UNPKG

@stordata/vsphere-soapify

Version:

A NodeJS abstraction layer for the vSphere SOAP API

18,613 lines 766 kB
'use strict';

const { expect } = require('chai'),
      MockDate = require('mockdate'),
      { HostSystem, VirtualMachine } = require('./sdk').managed,
      Client = require('./client');

describe('The Client class', function() {

  let client;

  before(function() {
    MockDate.set('2019-09-01T12:34:56.789Z');
  });

  after(function() {
    MockDate.reset();
  });

  beforeEach(function() {
    client = new Client('https://url/sdk');
  });

  describe('The getHosts method', function() {

    it('should return an array of HostSystem instances, when queried with a set of properties', function() {
      this.mockSoapOperation('5.5', 'RetrieveServiceContent');
      this.mockSoapOperation('5.5', 'getHosts/partial/CreateContainerView');
      this.mockSoapOperation('5.5', 'getHosts/partial/RetrievePropertiesEx');

      return client.getHosts([
        'name',
        'hardware.smcPresent',
        'licensableResource',
        'runtime.bootTime',
        'runtime.connectionState',
        'runtime.dasHostState',
        'runtime.inMaintenanceMode',
        'runtime.powerState',
        'runtime.standbyMode',
        'summary.config.product',
        'summary.config.port',
        'summary.config.vmotionEnabled',
        'summary.config.faultToleranceEnabled',
        'summary.currentEVCModeKey',
        'summary.hardware',
        'summary.managementServerIp',
        'summary.maxEVCModeKey',
        'summary.overallStatus',
        'summary.rebootRequired',
        'summary.quickStats',
        'datastore'
      ]).then((hosts) => {
        expect(hosts).to.deep.equal([
          {
            datastore: [
              {
                ref: 'datastore-29'
              }, {
                ref: 'datastore-30'
              }
            ],
            hardware: {
              smcPresent: false
            },
            licensableResource: {
              resource: {
                numCpuCores: 40,
                numCpuPackages: 4,
                numVmsStarted: 1
              }
            },
            name: 'aziliz.stordata.fr',
            ref: 'host-67',
            runtime: {
              bootTime: new Date('2019-01-24T11:12:33.617Z'),
              connectionState: 'connected',
              dasHostState: {
                state: 'connectedToMaster'
              },
              inMaintenanceMode: false,
              powerState: 'poweredOn',
              standbyMode: 'none'
            },
            summary: {
              config: {
                faultToleranceEnabled: false,
                port: 443,
                product: {
                  apiType: 'HostAgent',
                  apiVersion: '6.7.1',
                  build: '10302608',
                  fullName: 'VMware ESXi 6.7.0 build-10302608',
                  licenseProductName: 'VMware ESX Server',
                  licenseProductVersion: '6.0',
                  localeBuild: '000',
                  localeVersion: 'INTL',
                  name: 'VMware ESXi',
                  osType: 'vmnix-x86',
                  productLineId: 'embeddedEsx',
                  vendor: 'VMware, Inc.',
                  version: '6.7.0'
                },
                vmotionEnabled: true
              },
              hardware: {
                cpuMhz: 2200,
                cpuModel: 'Intel(R) Xeon(R) CPU E5-4640 v2 @ 2.20GHz',
                memorySize: 274830041088,
                model: 'PowerEdge R820',
                numCpuCores: 40,
                numCpuPkgs: 4,
                numCpuThreads: 80,
                numHBAs: 5,
                numNics: 8,
                uuid: '4c4c4544-0036-3910-8050-b9c04f323132',
                vendor: 'Dell Inc.'
              },
              managementServerIp: '10.78.7.214',
              maxEVCModeKey: 'intel-ivybridge',
              overallStatus: 'red',
              quickStats: {
                distributedCpuFairness: 10000,
                distributedMemoryFairness: 1770,
                overallCpuUsage: 2984,
                overallMemoryUsage: 44309,
                uptime: 2409110
              },
              rebootRequired: false
            }
          },
          {
            hardware: {
              smcPresent: false
            },
            licensableResource: {
              resource: {
                numCpuCores: 40,
                numCpuPackages: 4,
                numVmsStarted: 0
              }
            },
            name: 'tumet.stordata.fr',
            ref: 'host-72',
            runtime: {
              bootTime: new Date('2019-01-24T11:14:28.460Z'),
              connectionState: 'connected',
              dasHostState: {
                state: 'master'
              },
              inMaintenanceMode: false,
              powerState: 'poweredOn',
              standbyMode: 'none'
            },
            summary: {
              config: {
                faultToleranceEnabled: false,
                port: 443,
                product: {
                  apiType: 'HostAgent',
                  apiVersion: '6.7.1',
                  build: '10302608',
                  fullName: 'VMware ESXi 6.7.0 build-10302608',
                  licenseProductName: 'VMware ESX Server',
                  licenseProductVersion: '6.0',
                  localeBuild: '000',
                  localeVersion: 'INTL',
                  name: 'VMware ESXi',
                  osType: 'vmnix-x86',
                  productLineId: 'embeddedEsx',
                  vendor: 'VMware, Inc.',
                  version: '6.7.0'
                },
                vmotionEnabled: true
              },
              hardware: {
                cpuMhz: 2200,
                cpuModel: 'Intel(R) Xeon(R) CPU E5-4640 v2 @ 2.20GHz',
                memorySize: 274830041088,
                model: 'PowerEdge R820',
                numCpuCores: 40,
                numCpuPkgs: 4,
                numCpuThreads: 80,
                numHBAs: 5,
                numNics: 8,
                uuid: '4c4c4544-0036-3910-8050-c7c04f323132',
                vendor: 'Dell Inc.'
              },
              managementServerIp: '10.78.7.214',
              maxEVCModeKey: 'intel-ivybridge',
              overallStatus: 'red',
              quickStats: {
                distributedCpuFairness: 10000,
                distributedMemoryFairness: 4074,
                overallCpuUsage: 462,
                overallMemoryUsage: 20565,
                uptime: 2408983
              },
              rebootRequired: false
            }
          }
        ]);
      });
    });

    it('should return an array of HostSystem instances with full supported properties', function() {
      this.mockSoapOperation('5.5', 'RetrieveServiceContent');
      this.mockSoapOperation('5.5', 'getHosts/full/CreateContainerView');
      this.mockSoapOperation('5.5', 'getHosts/full/RetrievePropertiesEx');

      return client.getHosts().then((hosts) => {
        expect(hosts).to.deep.equal([
          {
            alarmActionsEnabled: true,
            config: {
              fileSystemVolume: {
                mountInfo: [
                  {
                    mountInfo: {
                      accessMode: 'readWrite',
                      accessible: true,
                      mounted: true,
                      path: '/vmfs/volumes/60e41bdf-d3b09ff8-548d-0025b501a004'
                    },
                    vStorageSupport: 'vStorageSupported',
                    volume: {
                      blockSizeMb: 1,
                      capacity: 107105746944,
                      extent: [
                        {
                          diskName: 'naa.600a098038314647492452446a6c2f2f',
                          partition: 1
                        }
                      ],
                      local: false,
                      majorVersion: 6,
                      maxBlocks: 63963136,
                      name: 'STOR-PRO-DSLOGS',
                      ssd: true,
                      type: 'VMFS',
                      unmapGranularity: 1024,
                      unmapPriority: 'low',
                      uuid: '60e41bdf-d3b09ff8-548d-0025b501a004',
                      version: '6.82',
                      vmfsUpgradable: false
                    }
                  },
                  {
                    mountInfo: {
                      accessMode: 'readWrite',
                      accessible: true,
                      mounted: true,
                      path: '/vmfs/volumes/60e45926-8dbddbe6-ccd9-0025b501a004'
                    },
                    vStorageSupport: 'vStorageSupported',
                    volume: {
                      blockSizeMb: 1,
                      capacity: 4397778075648,
                      extent: [
                        {
                          diskName: 'naa.600a098038314647492452446a6c2f61',
                          partition: 1
                        }
                      ],
                      local: false,
                      majorVersion: 6,
                      maxBlocks: 63963136,
                      name: 'STOR-PRO-DS01',
                      ssd: true,
                      type: 'VMFS',
                      unmapGranularity: 1024,
                      unmapPriority: 'low',
                      uuid: '60e45926-8dbddbe6-ccd9-0025b501a004',
                      version: '6.82',
                      vmfsUpgradable: false
                    }
                  },
                  {
                    mountInfo: {
                      accessMode: 'readWrite',
                      accessible: true,
                      mounted: true,
                      path: '/vmfs/volumes/60e45994-249a53e0-ab06-0025b501a004'
                    },
                    vStorageSupport: 'vStorageSupported',
                    volume: {
                      blockSizeMb: 1,
                      capacity: 4397778075648,
                      extent: [
                        {
                          diskName: 'naa.600a098038314647492452446a6c2f63',
                          partition: 1
                        }
                      ],
                      local: false,
                      majorVersion: 6,
                      maxBlocks: 63963136,
                      name: 'STOR-PRO-DS03',
                      ssd: true,
                      type: 'VMFS',
                      unmapGranularity: 1024,
                      unmapPriority: 'low',
                      uuid: '60e45994-249a53e0-ab06-0025b501a004',
                      version: '6.82',
                      vmfsUpgradable: false
                    }
                  },
                  {
                    mountInfo: {
                      accessMode: 'readWrite',
                      accessible: true,
                      mounted: true,
                      path: '/vmfs/volumes/60e459e8-d65928b2-f82b-0025b501a004'
                    },
                    vStorageSupport: 'vStorageSupported',
                    volume: {
                      blockSizeMb: 1,
                      capacity: 4397778075648,
                      extent: [
                        {
                          diskName: 'naa.600a098038314647492452446a6c2f64',
                          partition: 1
                        }
                      ],
                      local: false,
                      majorVersion: 6,
                      maxBlocks: 63963136,
                      name: 'STOR-PRO-DS04',
                      ssd: true,
                      type: 'VMFS',
                      unmapGranularity: 1024,
                      unmapPriority: 'low',
                      uuid: '60e459e8-d65928b2-f82b-0025b501a004',
                      version: '6.82',
                      vmfsUpgradable: false
                    }
                  },
                  {
                    mountInfo: {
                      accessMode: 'readWrite',
                      accessible: true,
                      mounted: true,
                      path: '/vmfs/volumes/60e459fe-71c9c5fa-c12d-0025b501a004'
                    },
                    vStorageSupport: 'vStorageSupported',
                    volume: {
                      blockSizeMb: 1,
                      capacity: 4397778075648,
                      extent: [
                        {
                          diskName: 'naa.600a098038314647492452446a6c2f62',
                          partition: 1
                        }
                      ],
                      local: false,
                      majorVersion: 6,
                      maxBlocks: 63963136,
                      name: 'STOR-PRO-DS02',
                      ssd: true,
                      type: 'VMFS',
                      unmapGranularity: 1024,
                      unmapPriority: 'low',
                      uuid: '60e459fe-71c9c5fa-c12d-0025b501a004',
                      version: '6.82',
                      vmfsUpgradable: false
                    }
                  },
                  {
                    mountInfo: {
                      accessMode: 'readWrite',
                      accessible: true,
                      mounted: true,
                      path: '/vmfs/volumes/6140d672-1ddbe2ac-bc17-0025b501a005'
                    },
                    vStorageSupport: 'vStorageSupported',
                    volume: {
                      blockSizeMb: 1,
                      capacity: 1610344300544,
                      extent: [
                        {
                          diskName: 'naa.600a098038314647492452446a6c2f66',
                          partition: 1
                        }
                      ],
                      local: false,
                      majorVersion: 6,
                      maxBlocks: 63963136,
                      name: 'STOR-PRO-DSSSD',
                      ssd: true,
                      type: 'VMFS',
                      unmapGranularity: 1024,
                      unmapPriority: 'low',
                      uuid: '6140d672-1ddbe2ac-bc17-0025b501a005',
                      version: '6.82',
                      vmfsUpgradable: false
                    }
                  },
                  {
                    mountInfo: {
                      accessMode: 'readWrite',
                      accessible: true,
                      mounted: true,
                      path: '/vmfs/volumes/60bf68d0-7b29668c-dd38-0025b501a004'
                    },
                    vStorageSupport: 'vStorageSupported',
                    volume: {
                      blockSizeMb: 1,
                      capacity: 4026531840,
                      extent: [
                        {
                          diskName: 'naa.600a098038314647492452446a6c2f4f',
                          partition: 7
                        }
                      ],
                      local: false,
                      majorVersion: 6,
                      maxBlocks: 63963136,
                      name: 'OSDATA-60bf68d0-7b29668c-dd38-0025b501a004',
                      ssd: true,
                      type: 'OTHER',
                      unmapGranularity: 1024,
                      unmapPriority: 'low',
                      uuid: '60bf68d0-7b29668c-dd38-0025b501a004',
                      version: '6.82',
                      vmfsUpgradable: false
                    }
                  },
                  {
                    mountInfo: {
                      accessMode: 'readWrite',
                      accessible: true,
                      mounted: true,
                      path: '/vmfs/volumes/d090baf9-62dcfd73'
                    },
                    vStorageSupport: 'vStorageUnsupported',
                    volume: {
                      capacity: 1044536049664,
                      name: 'STOR_PRO_DS_ISO',
                      remoteHost: '10.10.1.186',
                      remotePath: '/STOR_PRO_DS_ISO',
                      type: 'NFS'
                    }
                  },
                  {
                    mountInfo: {
                      accessMode: 'readWrite',
                      accessible: true,
                      mounted: true,
                      path: '/vmfs/volumes/8750440e-a3f9ffdc'
                    },
                    vStorageSupport: 'vStorageUnsupported',
                    volume: {
                      capacity: 3133608140800,
                      name: 'Datastore_Migration',
                      remoteHost: '10.10.1.186',
                      remotePath: '/STOR_PRO_DSNFS',
                      type: 'NFS'
                    }
                  },
                  {
                    mountInfo: {
                      accessMode: 'readOnly',
                      accessible: true,
                      mounted: true,
                      path: '/vmfs/volumes/21275ff8-a1456722-eeb4-2a12b1fe997d'
                    },
                    volume: {
                      capacity: 524009472,
                      name: 'BOOTBANK1',
                      type: 'OTHER'
                    }
                  },
                  {
                    mountInfo: {
                      accessMode: 'readOnly',
                      accessible: true,
                      mounted: true,
                      path: '/vmfs/volumes/7ffef90d-464c05ac-608d-0afc0d8caa03'
                    },
                    volume: {
                      capacity: 524009472,
                      name: 'BOOTBANK2',
                      type: 'OTHER'
                    }
                  }
                ],
                volumeTypeList: [
                  'VMFS',
                  'NFS',
                  'NFS41',
                  'vsan',
                  'VVOL',
                  'VFFS',
                  'OTHER',
                  'PMEM'
                ]
              },
              multipathState: {
                path: [
                  {
                    name: 'vmhba64:C0:T0:L0',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C0:T0:L100',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C0:T0:L11',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C0:T0:L12',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C0:T0:L13',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C0:T0:L14',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C0:T0:L20',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C1:T0:L0',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C1:T0:L100',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C1:T0:L11',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C1:T0:L12',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C1:T0:L13',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C1:T0:L14',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C1:T0:L20',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C2:T0:L0',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C2:T0:L100',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C2:T0:L11',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C2:T0:L12',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C2:T0:L13',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C2:T0:L14',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C2:T0:L20',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C3:T0:L0',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C3:T0:L100',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C3:T0:L11',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C3:T0:L12',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C3:T0:L13',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C3:T0:L14',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C3:T0:L20',
                    pathState: 'active'
                  }
                ]
              },
              network: {
                pnic: [
                  {
                    device: 'vmnic0',
                    key: 'key-vim.host.PhysicalNic-vmnic0',
                    linkSpeed: {
                      duplex: true,
                      speedMb: 20000
                    },
                    mac: '00:25:b5:01:a0:04'
                  },
                  {
                    device: 'vmnic1',
                    key: 'key-vim.host.PhysicalNic-vmnic1',
                    linkSpeed: {
                      duplex: true,
                      speedMb: 20000
                    },
                    mac: '00:25:b5:01:b0:04'
                  },
                  {
                    device: 'vmnic2',
                    key: 'key-vim.host.PhysicalNic-vmnic2',
                    linkSpeed: {
                      duplex: true,
                      speedMb: 20000
                    },
                    mac: '00:25:b5:01:a2:04'
                  },
                  {
                    device: 'vmnic3',
                    key: 'key-vim.host.PhysicalNic-vmnic3',
                    linkSpeed: {
                      duplex: true,
                      speedMb: 20000
                    },
                    mac: '00:25:b5:01:b3:04'
                  },
                  {
                    device: 'vmnic4',
                    key: 'key-vim.host.PhysicalNic-vmnic4',
                    linkSpeed: {
                      duplex: true,
                      speedMb: 20000
                    },
                    mac: '00:25:b5:01:a4:04'
                  },
                  {
                    device: 'vmnic5',
                    key: 'key-vim.host.PhysicalNic-vmnic5',
                    linkSpeed: {
                      duplex: true,
                      speedMb: 20000
                    },
                    mac: '00:25:b5:01:b5:04'
                  },
                  {
                    device: 'vmnic6',
                    key: 'key-vim.host.PhysicalNic-vmnic6',
                    linkSpeed: {
                      duplex: true,
                      speedMb: 20000
                    },
                    mac: '00:25:b5:01:a6:00'
                  },
                  {
                    device: 'vmnic7',
                    key: 'key-vim.host.PhysicalNic-vmnic7',
                    linkSpeed: {
                      duplex: true,
                      speedMb: 20000
                    },
                    mac: '00:25:b5:01:b7:00'
                  },
                  {
                    device: 'vmnic8',
                    key: 'key-vim.host.PhysicalNic-vmnic8',
                    linkSpeed: {
                      duplex: true,
                      speedMb: 20000
                    },
                    mac: '00:25:b5:01:a8:00'
                  },
                  {
                    device: 'vmnic9',
                    key: 'key-vim.host.PhysicalNic-vmnic9',
                    linkSpeed: {
                      duplex: true,
                      speedMb: 20000
                    },
                    mac: '00:25:b5:01:b9:00'
                  }
                ],
                portgroup: [
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic6',
                            'vmnic7'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-iScsiBootPG',
                    spec: {
                      name: 'iScsiBootPG',
                      vlanId: 0,
                      vswitchName: 'iScsiBootvSwitch'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-iScsiBootvSwitch'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic7'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-iSCSI-B',
                    spec: {
                      name: 'iSCSI-B',
                      vlanId: 0,
                      vswitchName: 'iScsiBootvSwitch'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-iScsiBootvSwitch'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic6'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-iSCSI-A',
                    spec: {
                      name: 'iSCSI-A',
                      vlanId: 0,
                      vswitchName: 'iScsiBootvSwitch'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-iScsiBootvSwitch'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic0',
                            'vmnic1'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-VM Network',
                    spec: {
                      name: 'VM Network',
                      vlanId: 0,
                      vswitchName: 'vSwitch0'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch0'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic0',
                            'vmnic1'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-LAN Stordata',
                    spec: {
                      name: 'LAN Stordata',
                      vlanId: 0,
                      vswitchName: 'vSwitch0'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch0'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic0'
                          ],
                          standbyNic: [
                            'vmnic1'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-Management Network',
                    spec: {
                      name: 'Management Network',
                      vlanId: 0,
                      vswitchName: 'vSwitch0'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch0'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic2',
                            'vmnic3'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-vMotion-1',
                    spec: {
                      name: 'vMotion-1',
                      vlanId: 0,
                      vswitchName: 'vSwitch1'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch1'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic3'
                          ],
                          standbyNic: [
                            'vmnic2'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-vMotion-B',
                    spec: {
                      name: 'vMotion-B',
                      vlanId: 0,
                      vswitchName: 'vSwitch1'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch1'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic2'
                          ],
                          standbyNic: [
                            'vmnic3'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-vMotion-A',
                    spec: {
                      name: 'vMotion-A',
                      vlanId: 0,
                      vswitchName: 'vSwitch1'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch1'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-DMZ_CL-BYTEL',
                    spec: {
                      name: 'DMZ_CL-BYTEL',
                      vlanId: 161,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-LAN_FORMATION_137',
                    spec: {
                      name: 'LAN_FORMATION_137',
                      vlanId: 137,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-LAN_IOT_136',
                    spec: {
                      name: 'LAN_IOT_136',
                      vlanId: 136,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-LAN_PRINT_135',
                    spec: {
                      name: 'LAN_PRINT_135',
                      vlanId: 135,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-LAN_PSAVV_134',
                    spec: {
                      name: 'LAN_PSAVV_134',
                      vlanId: 134,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-LAN_SUPPORT_133',
                    spec: {
                      name: 'LAN_SUPPORT_133',
                      vlanId: 133,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-LAN_ADMCOM_132',
                    spec: {
                      name: 'LAN_ADMCOM_132',
                      vlanId: 132,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-LAN_IT_131',
                    spec: {
                      name: 'LAN_IT_131',
                      vlanId: 131,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-DMZ_CSA_IVANTI',
                    spec: {
                      name: 'DMZ_CSA_IVANTI',
                      vlanId: 187,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-WIFI_MOBILE',
                    spec: {
                      name: 'WIFI_MOBILE',
                      vlanId: 122,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-LAN Prod',
                    spec: {
                      name: 'LAN Prod',
                      vlanId: 1000,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-DMZ_IPSEC_CLD',
                    spec: {
                      name: 'DMZ_IPSEC_CLD',
                      vlanId: 160,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-NFS_Stornetapp',
                    spec: {
                      name: 'NFS_Stornetapp',
                      vlanId: 601,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-Prod_Management',
                    spec: {
                      name: 'Prod_Management',
                      vlanId: 150,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-DMZ_CL-AG2R',
                    spec: {
                      name: 'DMZ_CL-AG2R',
                      vlanId: 162,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  }
                ],
                vnic: [
                  {
                    device: 'vmk0',
                    key: 'key-vim.host.VirtualNic-vmk0',
                    port: 'key-vim.host.PortGroup.Port-100663328',
                    portgroup: 'Management Network'
                  },
                  {
                    device: 'vmk1',
                    key: 'key-vim.host.VirtualNic-vmk1',
                    port: 'key-vim.host.PortGroup.Port-67108897',
                    portgroup: 'iSCSI-A'
                  },
                  {
                    device: 'vmk2',
                    key: 'key-vim.host.VirtualNic-vmk2',
                    port: 'key-vim.host.PortGroup.Port-67108898',
                    portgroup: 'iSCSI-B'
                  },
                  {
                    device: 'vmk3',
                    key: 'key-vim.host.VirtualNic-vmk3',
                    port: 'key-vim.host.PortGroup.Port-134217763',
                    portgroup: 'vMotion-A'
                  },
                  {
                    device: 'vmk4',
                    key: 'key-vim.host.VirtualNic-vmk4',
                    port: 'key-vim.host.PortGroup.Port-134217764',
                    portgroup: 'vMotion-B'
                  }
                ]
              },
              storageDevice: {
                hostBusAdapter: [
                  {
                    bus: -1,
                    configuredStaticTarget: [
                      {
                        address: '192.168.51.2',
                        iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6',
                        parent: 'vmhba64',
                        port: 3260
                      },
                      {
                        address: '192.168.51.1',
                        iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6',
                        parent: 'vmhba64',
                        port: 3260
                      },
                      {
                        address: '192.168.52.1',
                        iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6',
                        parent: 'vmhba64',
                        port: 3260
                      },
                      {
                        address: '192.168.52.2',
                        iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6',
                        parent: 'vmhba64',
                        port: 3260
                      }
                    ],
                    device: 'vmhba64',
                    driver: 'iscsi_vmk',
                    iScsiAlias: '',
                    iScsiName: 'iqn.1987-05.com.cisco:esxi0:1',
                    isSoftwareBased: true,
                    key: 'key-vim.host.InternetScsiHba-vmhba64',
                    model: 'iSCSI Software Adapter',
                    pci: 'N/A',
                    status: 'online'
                  }
                ],
                multipathInfo: {
                  lun: [
                    {
                      id: '0200000000600a098038314647492452446a6c2f4f4c554e20432d',
                      key: 'key-vim.host.MultipathInfo.LogicalUnit-0200000000600a098038314647492452446a6c2f4f4c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-0200000000600a098038314647492452446a6c2f4f4c554e20432d',
                      path: [
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C0:T0:L0',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-0200000000600a098038314647492452446a6c2f4f4c554e20432d',
                          name: 'vmhba64:C0:T0:L0',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C3:T0:L0',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-0200000000600a098038314647492452446a6c2f4f4c554e20432d',
                          name: 'vmhba64:C3:T0:L0',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C2:T0:L0',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-0200000000600a098038314647492452446a6c2f4f4c554e20432d',
                          name: 'vmhba64:C2:T0:L0',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C1:T0:L0',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-0200000000600a098038314647492452446a6c2f4f4c554e20432d',
                          name: 'vmhba64:C1:T0:L0',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        }
                      ],
                      policy: {
                        policy: 'VMW_PSP_RR'
                      },
                      storageArrayTypePolicy: {
                        policy: 'VMW_SATP_ALUA'
                      }
                    },
                    {
                      id: '02000b0000600a098038314647492452446a6c2f614c554e20432d',
                      key: 'key-vim.host.MultipathInfo.LogicalUnit-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                      path: [
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C0:T0:L11',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                          name: 'vmhba64:C0:T0:L11',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C1:T0:L11',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                          name: 'vmhba64:C1:T0:L11',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C2:T0:L11',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                          name: 'vmhba64:C2:T0:L11',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C3:T0:L11',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                          name: 'vmhba64:C3:T0:L11',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        }
                      ],
                      policy: {
                        policy: 'VMW_PSP_RR'
                      },
                      storageArrayTypePolicy: {
                        policy: 'VMW_SATP_ALUA'
                      }
                    },
                    {
                      id: '02000c0000600a098038314647492452446a6c2f624c554e20432d',
                      key: 'key-vim.host.MultipathInfo.LogicalUnit-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                      path: [
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C0:T0:L12',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                          name: 'vmhba64:C0:T0:L12',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C1:T0:L12',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                          name: 'vmhba64:C1:T0:L12',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C2:T0:L12',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                          name: 'vmhba64:C2:T0:L12',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C3:T0:L12',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                          name: 'vmhba64:C3:T0:L12',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        }
                      ],
                      policy: {
                        policy: 'VMW_PSP_RR'
                      },
                      storageArrayTypePolicy: {
                        policy: 'VMW_SATP_ALUA'
                      }
                    },
                    {
                      id: '02000d0000600a098038314647492452446a6c2f634c554e20432d',
                      key: 'key-vim.host.MultipathInfo.LogicalUnit-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                      path: [
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C0:T0:L13',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                          name: 'vmhba64:C0:T0:L13',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C1:T0:L13',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                          name: 'vmhba64:C1:T0:L13',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C2:T0:L13',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                          name: 'vmhba64:C2:T0:L13',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C3:T0:L13',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                          name: 'vmhba64:C3:T0:L13',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        }
                      ],
                      policy: {
                        policy: 'VMW_PSP_RR'
                      },
                      storageArrayTypePolicy: {
                        policy: 'VMW_SATP_ALUA'
                      }
                    },
                    {
                      id: '02000e0000600a098038314647492452446a6c2f644c554e20432d',
                      key: 'key-vim.host.MultipathInfo.LogicalUnit-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                      path: [
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C0:T0:L14',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                          name: 'vmhba64:C0:T0:L14',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C1:T0:L14',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                          name: 'vmhba64:C1:T0:L14',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C2:T0:L14',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                          name: 'vmhba64:C2:T0:L14',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C3:T0:L14',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                          name: 'vmhba64:C3:T0:L14',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        }
                      ],
                      policy: {
                        policy: 'VMW_PSP_RR'
                      },
                      storageArrayTypePolicy: {
                        policy: 'VMW_SATP_ALUA'
                      }
                    },
                    {
                      id: '0200140000600a098038314647492452446a6c2f664c554e20432d',
                      key: 'key-vim.host.MultipathInfo.LogicalUnit-0200140000600a098038314647492452446a6c2f664c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-0200140000600a098038314647492452446a6c2f664c554e20432d',
                      path: [
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C0:T0:L20',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-0200140000600a098038314647492452446a6c2f664c554e20432d',
                          name: 'vmhba64:C0:T0:L20',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C1:T0:L20',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-0200140000600a098038314647492452446a6c2f664c554e20432d',
                          name: 'vmhba64:C1:T0:L20',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C2:T0:L20',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-0200140000600a098038314647492452446a6c2f664c554e20432d',
                          name: 'vmhba64:C2:T0:L20',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C3:T0:L20',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-0200140000600a098038314647492452446a6c2f664c554e20432d',
                          name: 'vmhba64:C3:T0:L20',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        }
                      ],
                      policy: {
                        policy: 'VMW_PSP_RR'
                      },
                      storageArrayTypePolicy: {
                        policy: 'VMW_SATP_ALUA'
                      }
                    },
                    {
                      id: '0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                      key: 'key-vim.host.MultipathInfo.LogicalUnit-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                      path: [
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C2:T0:L100',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                          name: 'vmhba64:C2:T0:L100',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C1:T0:L100',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                          name: 'vmhba64:C1:T0:L100',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C0:T0:L100',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                          name: 'vmhba64:C0:T0:L100',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C3:T0:L100',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                          name: 'vmhba64:C3:T0:L100',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        }
                      ],
                      policy: {
                        policy: 'VMW_PSP_RR'
                      },
                      storageArrayTypePolicy: {
                        policy: 'VMW_SATP_ALUA'
                      }
                    }
                  ]
                },
                plugStoreTopology: {
                  adapter: [
                    {
                      adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                      key: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      path: [
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L0',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L100',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L100',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L100',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L11',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L12',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L13',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L14',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L11',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L12',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L13',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L14',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L11',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L12',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L13',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L14',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L11',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L12',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L13',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L14',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L0',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L0',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L20',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L20',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L0',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L20',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L20',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L100'
                      ]
                    }
                  ],
                  device: [
                    {
                      key: 'key-vim.host.PlugStoreTopology.Device-0200000000600a098038314647492452446a6c2f4f4c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-0200000000600a098038314647492452446a6c2f4f4c554e20432d',
                      path: [
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L0',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L0',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L0',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L0'
                      ]
                    },
                    {
                      key: 'key-vim.host.PlugStoreTopology.Device-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                      path: [
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L11',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L11',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L11',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L11'
                      ]
                    },
                    {
                      key: 'key-vim.host.PlugStoreTopology.Device-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                      path: [
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L12',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L12',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L12',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L12'
                      ]
                    },
                    {
                      key: 'key-vim.host.PlugStoreTopology.Device-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                      path: [
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L13',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L13',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L13',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L13'
                      ]
                    },
                    {
                      key: 'key-vim.host.PlugStoreTopology.Device-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                      path: [
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L14',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L14',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L14',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L14'
                      ]
                    },
                    {
                      key: 'key-vim.host.PlugStoreTopology.Device-0200140000600a098038314647492452446a6c2f664c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-0200140000600a098038314647492452446a6c2f664c554e20432d',
                      path: [
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L20',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L20',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L20',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L20'
                      ]
                    },
                    {
                      key: 'key-vim.host.PlugStoreTopology.Device-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                      path: [
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L100',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L100',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L100',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L100'
                      ]
                    }
                  ],
                  path: [
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 0,
                      device: 'key-vim.host.PlugStoreTopology.Device-0200000000600a098038314647492452446a6c2f4f4c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L0',
                      lunNumber: 0,
                      name: 'vmhba64:C0:T0:L0',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1034',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 2,
                      device: 'key-vim.host.PlugStoreTopology.Device-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L100',
                      lunNumber: 100,
                      name: 'vmhba64:C2:T0:L100',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000015,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1030',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 1,
                      device: 'key-vim.host.PlugStoreTopology.Device-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L100',
                      lunNumber: 100,
                      name: 'vmhba64:C1:T0:L100',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000014,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1032',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 0,
                      device: 'key-vim.host.PlugStoreTopology.Device-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L100',
                      lunNumber: 100,
                      name: 'vmhba64:C0:T0:L100',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1034',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 0,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L11',
                      lunNumber: 11,
                      name: 'vmhba64:C0:T0:L11',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1034',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 0,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L12',
                      lunNumber: 12,
                      name: 'vmhba64:C0:T0:L12',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1034',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 0,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L13',
                      lunNumber: 13,
                      name: 'vmhba64:C0:T0:L13',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1034',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 0,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L14',
                      lunNumber: 14,
                      name: 'vmhba64:C0:T0:L14',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1034',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 1,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L11',
                      lunNumber: 11,
                      name: 'vmhba64:C1:T0:L11',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000014,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1032',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 1,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L12',
                      lunNumber: 12,
                      name: 'vmhba64:C1:T0:L12',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000014,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1032',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 1,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L13',
                      lunNumber: 13,
                      name: 'vmhba64:C1:T0:L13',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000014,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1032',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 1,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L14',
                      lunNumber: 14,
                      name: 'vmhba64:C1:T0:L14',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000014,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1032',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 2,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L11',
                      lunNumber: 11,
                      name: 'vmhba64:C2:T0:L11',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000015,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1030',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 2,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L12',
                      lunNumber: 12,
                      name: 'vmhba64:C2:T0:L12',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000015,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1030',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 2,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L13',
                      lunNumber: 13,
                      name: 'vmhba64:C2:T0:L13',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000015,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1030',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 2,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L14',
                      lunNumber: 14,
                      name: 'vmhba64:C2:T0:L14',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000015,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1030',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 3,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L11',
                      lunNumber: 11,
                      name: 'vmhba64:C3:T0:L11',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000016,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1035',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 3,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L12',
                      lunNumber: 12,
                      name: 'vmhba64:C3:T0:L12',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000016,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1035',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 3,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L13',
                      lunNumber: 13,
                      name: 'vmhba64:C3:T0:L13',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000016,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1035',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 3,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L14',
                      lunNumber: 14,
                      name: 'vmhba64:C3:T0:L14',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000016,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1035',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 3,
                      device: 'key-vim.host.PlugStoreTopology.Device-0200000000600a098038314647492452446a6c2f4f4c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L0',
                      lunNumber: 0,
                      name: 'vmhba64:C3:T0:L0',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000016,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1035',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 2,
                      device: 'key-vim.host.PlugStoreTopology.Device-0200000000600a098038314647492452446a6c2f4f4c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L0',
                      lunNumber: 0,
                      name: 'vmhba64:C2:T0:L0',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000015,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1030',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 0,
                      device: 'key-vim.host.PlugStoreTopology.Device-0200140000600a098038314647492452446a6c2f664c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L20',
                      lunNumber: 20,
                      name: 'vmhba64:C0:T0:L20',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1034',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 1,
                      device: 'key-vim.host.PlugStoreTopology.Device-0200140000600a098038314647492452446a6c2f664c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L20',
                      lunNumber: 20,
                      name: 'vmhba64:C1:T0:L20',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000014,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1032',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 1,
                      device: 'key-vim.host.PlugStoreTopology.Device-0200000000600a098038314647492452446a6c2f4f4c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L0',
                      lunNumber: 0,
                      name: 'vmhba64:C1:T0:L0',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000014,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1032',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 2,
                      device: 'key-vim.host.PlugStoreTopology.Device-0200140000600a098038314647492452446a6c2f664c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L20',
                      lunNumber: 20,
                      name: 'vmhba64:C2:T0:L20',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000015,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1030',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 3,
                      device: 'key-vim.host.PlugStoreTopology.Device-0200140000600a098038314647492452446a6c2f664c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L20',
                      lunNumber: 20,
                      name: 'vmhba64:C3:T0:L20',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000016,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1035',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 3,
                      device: 'key-vim.host.PlugStoreTopology.Device-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L100',
                      lunNumber: 100,
                      name: 'vmhba64:C3:T0:L100',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000016,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1035',
                      targetNumber: 0
                    }
                  ],
                  plugin: [
                    {
                      claimedPath: [
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L0',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L100',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L100',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L100',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L11',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L12',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L13',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L14',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L11',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L12',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L13',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L14',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L11',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L12',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L13',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L14',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L11',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L12',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L13',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L14',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L0',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L0',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L20',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L20',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L0',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L20',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L20',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L100'
                      ],
                      device: [
                        'key-vim.host.PlugStoreTopology.Device-0200000000600a098038314647492452446a6c2f4f4c554e20432d',
                        'key-vim.host.PlugStoreTopology.Device-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                        'key-vim.host.PlugStoreTopology.Device-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                        'key-vim.host.PlugStoreTopology.Device-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                        'key-vim.host.PlugStoreTopology.Device-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                        'key-vim.host.PlugStoreTopology.Device-0200140000600a098038314647492452446a6c2f664c554e20432d',
                        'key-vim.host.PlugStoreTopology.Device-0200640000600a098038314647492452446a6c2f2f4c554e20432d'
                      ],
                      key: 'key-vim.host.PlugStoreTopology.Plugin-NMP',
                      name: 'NMP'
                    }
                  ],
                  target: [
                    {
                      key: 'key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1034',
                      transport: {
                        address: [
                          '192.168.51.2:3260'
                        ],
                        classes: [
                          'HostInternetScsiTargetTransport',
                          'HostTargetTransport'
                        ],
                        iScsiAlias: '',
                        iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                      }
                    },
                    {
                      key: 'key-vim.host.PlugStoreTopology.Target-00023d000015,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1030',
                      transport: {
                        address: [
                          '192.168.52.1:3260'
                        ],
                        classes: [
                          'HostInternetScsiTargetTransport',
                          'HostTargetTransport'
                        ],
                        iScsiAlias: '',
                        iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                      }
                    },
                    {
                      key: 'key-vim.host.PlugStoreTopology.Target-00023d000014,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1032',
                      transport: {
                        address: [
                          '192.168.51.1:3260'
                        ],
                        classes: [
                          'HostInternetScsiTargetTransport',
                          'HostTargetTransport'
                        ],
                        iScsiAlias: '',
                        iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                      }
                    },
                    {
                      key: 'key-vim.host.PlugStoreTopology.Target-00023d000016,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1035',
                      transport: {
                        address: [
                          '192.168.52.2:3260'
                        ],
                        classes: [
                          'HostInternetScsiTargetTransport',
                          'HostTargetTransport'
                        ],
                        iScsiAlias: '',
                        iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                      }
                    }
                  ]
                },
                scsiLun: [
                  {
                    alternateName: [
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'SERIALNUM',
                        namespaceId: 4
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'NAA',
                        namespaceId: 3
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      }
                    ],
                    canonicalName: 'naa.600a098038314647492452446a6c2f4f',
                    capabilities: {
                      updateDisplayNameSupported: true
                    },
                    descriptor: [
                      {
                        id: 'naa.600a098038314647492452446a6c2f4f',
                        quality: 'highQuality'
                      },
                      {
                        id: 'vml.0200000000600a098038314647492452446a6c2f4f4c554e20432d',
                        quality: 'mediumQuality'
                      },
                      {
                        id: '0200000000600a098038314647492452446a6c2f4f4c554e20432d',
                        quality: 'mediumQuality'
                      }
                    ],
                    deviceName: '/vmfs/devices/disks/naa.600a098038314647492452446a6c2f4f',
                    deviceType: 'disk',
                    displayName: 'NETAPP iSCSI Disk (naa.600a098038314647492452446a6c2f4f)',
                    durableName: {
                      namespace: 'NAA',
                      namespaceId: 3
                    },
                    key: 'key-vim.host.ScsiDisk-0200000000600a098038314647492452446a6c2f4f4c554e20432d',
                    lunType: 'disk',
                    model: 'LUN C-Mode',
                    operationalState: [
                      'ok'
                    ],
                    queueDepth: 128,
                    revision: '9131',
                    scsiLevel: 6,
                    serialNumber: 'unavailable',
                    uuid: '0200000000600a098038314647492452446a6c2f4f4c554e20432d',
                    vStorageSupport: 'vStorageSupported',
                    vendor: 'NETAPP'
                  },
                  {
                    alternateName: [
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'SERIALNUM',
                        namespaceId: 4
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'NAA',
                        namespaceId: 3
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      }
                    ],
                    canonicalName: 'naa.600a098038314647492452446a6c2f61',
                    capabilities: {
                      updateDisplayNameSupported: true
                    },
                    descriptor: [
                      {
                        id: 'naa.600a098038314647492452446a6c2f61',
                        quality: 'highQuality'
                      },
                      {
                        id: 'vml.02000b0000600a098038314647492452446a6c2f614c554e20432d',
                        quality: 'mediumQuality'
                      },
                      {
                        id: '02000b0000600a098038314647492452446a6c2f614c554e20432d',
                        quality: 'mediumQuality'
                      }
                    ],
                    deviceName: '/vmfs/devices/disks/naa.600a098038314647492452446a6c2f61',
                    deviceType: 'disk',
                    displayName: 'NETAPP iSCSI Disk (naa.600a098038314647492452446a6c2f61)',
                    durableName: {
                      namespace: 'NAA',
                      namespaceId: 3
                    },
                    key: 'key-vim.host.ScsiDisk-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                    lunType: 'disk',
                    model: 'LUN C-Mode',
                    operationalState: [
                      'ok'
                    ],
                    queueDepth: 128,
                    revision: '9131',
                    scsiLevel: 6,
                    serialNumber: 'unavailable',
                    uuid: '02000b0000600a098038314647492452446a6c2f614c554e20432d',
                    vStorageSupport: 'vStorageSupported',
                    vendor: 'NETAPP'
                  },
                  {
                    alternateName: [
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'SERIALNUM',
                        namespaceId: 4
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'NAA',
                        namespaceId: 3
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      }
                    ],
                    canonicalName: 'naa.600a098038314647492452446a6c2f62',
                    capabilities: {
                      updateDisplayNameSupported: true
                    },
                    descriptor: [
                      {
                        id: 'naa.600a098038314647492452446a6c2f62',
                        quality: 'highQuality'
                      },
                      {
                        id: 'vml.02000c0000600a098038314647492452446a6c2f624c554e20432d',
                        quality: 'mediumQuality'
                      },
                      {
                        id: '02000c0000600a098038314647492452446a6c2f624c554e20432d',
                        quality: 'mediumQuality'
                      }
                    ],
                    deviceName: '/vmfs/devices/disks/naa.600a098038314647492452446a6c2f62',
                    deviceType: 'disk',
                    displayName: 'NETAPP iSCSI Disk (naa.600a098038314647492452446a6c2f62)',
                    durableName: {
                      namespace: 'NAA',
                      namespaceId: 3
                    },
                    key: 'key-vim.host.ScsiDisk-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                    lunType: 'disk',
                    model: 'LUN C-Mode',
                    operationalState: [
                      'ok'
                    ],
                    queueDepth: 128,
                    revision: '9131',
                    scsiLevel: 6,
                    serialNumber: 'unavailable',
                    uuid: '02000c0000600a098038314647492452446a6c2f624c554e20432d',
                    vStorageSupport: 'vStorageSupported',
                    vendor: 'NETAPP'
                  },
                  {
                    alternateName: [
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'SERIALNUM',
                        namespaceId: 4
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'NAA',
                        namespaceId: 3
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      }
                    ],
                    canonicalName: 'naa.600a098038314647492452446a6c2f63',
                    capabilities: {
                      updateDisplayNameSupported: true
                    },
                    descriptor: [
                      {
                        id: 'naa.600a098038314647492452446a6c2f63',
                        quality: 'highQuality'
                      },
                      {
                        id: 'vml.02000d0000600a098038314647492452446a6c2f634c554e20432d',
                        quality: 'mediumQuality'
                      },
                      {
                        id: '02000d0000600a098038314647492452446a6c2f634c554e20432d',
                        quality: 'mediumQuality'
                      }
                    ],
                    deviceName: '/vmfs/devices/disks/naa.600a098038314647492452446a6c2f63',
                    deviceType: 'disk',
                    displayName: 'NETAPP iSCSI Disk (naa.600a098038314647492452446a6c2f63)',
                    durableName: {
                      namespace: 'NAA',
                      namespaceId: 3
                    },
                    key: 'key-vim.host.ScsiDisk-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                    lunType: 'disk',
                    model: 'LUN C-Mode',
                    operationalState: [
                      'ok'
                    ],
                    queueDepth: 128,
                    revision: '9131',
                    scsiLevel: 6,
                    serialNumber: 'unavailable',
                    uuid: '02000d0000600a098038314647492452446a6c2f634c554e20432d',
                    vStorageSupport: 'vStorageSupported',
                    vendor: 'NETAPP'
                  },
                  {
                    alternateName: [
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'SERIALNUM',
                        namespaceId: 4
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'NAA',
                        namespaceId: 3
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      }
                    ],
                    canonicalName: 'naa.600a098038314647492452446a6c2f64',
                    capabilities: {
                      updateDisplayNameSupported: true
                    },
                    descriptor: [
                      {
                        id: 'naa.600a098038314647492452446a6c2f64',
                        quality: 'highQuality'
                      },
                      {
                        id: 'vml.02000e0000600a098038314647492452446a6c2f644c554e20432d',
                        quality: 'mediumQuality'
                      },
                      {
                        id: '02000e0000600a098038314647492452446a6c2f644c554e20432d',
                        quality: 'mediumQuality'
                      }
                    ],
                    deviceName: '/vmfs/devices/disks/naa.600a098038314647492452446a6c2f64',
                    deviceType: 'disk',
                    displayName: 'NETAPP iSCSI Disk (naa.600a098038314647492452446a6c2f64)',
                    durableName: {
                      namespace: 'NAA',
                      namespaceId: 3
                    },
                    key: 'key-vim.host.ScsiDisk-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                    lunType: 'disk',
                    model: 'LUN C-Mode',
                    operationalState: [
                      'ok'
                    ],
                    queueDepth: 128,
                    revision: '9131',
                    scsiLevel: 6,
                    serialNumber: 'unavailable',
                    uuid: '02000e0000600a098038314647492452446a6c2f644c554e20432d',
                    vStorageSupport: 'vStorageSupported',
                    vendor: 'NETAPP'
                  },
                  {
                    alternateName: [
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'SERIALNUM',
                        namespaceId: 4
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'NAA',
                        namespaceId: 3
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      }
                    ],
                    canonicalName: 'naa.600a098038314647492452446a6c2f66',
                    capabilities: {
                      updateDisplayNameSupported: true
                    },
                    descriptor: [
                      {
                        id: 'naa.600a098038314647492452446a6c2f66',
                        quality: 'highQuality'
                      },
                      {
                        id: 'vml.0200140000600a098038314647492452446a6c2f664c554e20432d',
                        quality: 'mediumQuality'
                      },
                      {
                        id: '0200140000600a098038314647492452446a6c2f664c554e20432d',
                        quality: 'mediumQuality'
                      }
                    ],
                    deviceName: '/vmfs/devices/disks/naa.600a098038314647492452446a6c2f66',
                    deviceType: 'disk',
                    displayName: 'NETAPP iSCSI Disk (naa.600a098038314647492452446a6c2f66)',
                    durableName: {
                      namespace: 'NAA',
                      namespaceId: 3
                    },
                    key: 'key-vim.host.ScsiDisk-0200140000600a098038314647492452446a6c2f664c554e20432d',
                    lunType: 'disk',
                    model: 'LUN C-Mode',
                    operationalState: [
                      'ok'
                    ],
                    queueDepth: 128,
                    revision: '9131',
                    scsiLevel: 6,
                    serialNumber: 'unavailable',
                    uuid: '0200140000600a098038314647492452446a6c2f664c554e20432d',
                    vStorageSupport: 'vStorageSupported',
                    vendor: 'NETAPP'
                  },
                  {
                    alternateName: [
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'SERIALNUM',
                        namespaceId: 4
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'NAA',
                        namespaceId: 3
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      }
                    ],
                    canonicalName: 'naa.600a098038314647492452446a6c2f2f',
                    capabilities: {
                      updateDisplayNameSupported: true
                    },
                    descriptor: [
                      {
                        id: 'naa.600a098038314647492452446a6c2f2f',
                        quality: 'highQuality'
                      },
                      {
                        id: 'vml.0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                        quality: 'mediumQuality'
                      },
                      {
                        id: '0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                        quality: 'mediumQuality'
                      }
                    ],
                    deviceName: '/vmfs/devices/disks/naa.600a098038314647492452446a6c2f2f',
                    deviceType: 'disk',
                    displayName: 'NETAPP iSCSI Disk (naa.600a098038314647492452446a6c2f2f)',
                    durableName: {
                      namespace: 'NAA',
                      namespaceId: 3
                    },
                    key: 'key-vim.host.ScsiDisk-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                    lunType: 'disk',
                    model: 'LUN C-Mode',
                    operationalState: [
                      'ok'
                    ],
                    queueDepth: 128,
                    revision: '9131',
                    scsiLevel: 6,
                    serialNumber: 'unavailable',
                    uuid: '0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                    vStorageSupport: 'vStorageSupported',
                    vendor: 'NETAPP'
                  }
                ],
                scsiTopology: {
                  adapter: [
                    {
                      adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                      key: 'key-vim.host.ScsiTopology.Interface-vmhba64',
                      target: [
                        {
                          key: 'key-vim.host.ScsiTopology.Target-vmhba64:0:0',
                          lun: [
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-0200000000600a098038314647492452446a6c2f4f4c554e20432d',
                              lun: 0,
                              scsiLun: 'key-vim.host.ScsiDisk-0200000000600a098038314647492452446a6c2f4f4c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                              lun: 11,
                              scsiLun: 'key-vim.host.ScsiDisk-02000b0000600a098038314647492452446a6c2f614c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                              lun: 12,
                              scsiLun: 'key-vim.host.ScsiDisk-02000c0000600a098038314647492452446a6c2f624c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                              lun: 13,
                              scsiLun: 'key-vim.host.ScsiDisk-02000d0000600a098038314647492452446a6c2f634c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                              lun: 14,
                              scsiLun: 'key-vim.host.ScsiDisk-02000e0000600a098038314647492452446a6c2f644c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-0200140000600a098038314647492452446a6c2f664c554e20432d',
                              lun: 20,
                              scsiLun: 'key-vim.host.ScsiDisk-0200140000600a098038314647492452446a6c2f664c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                              lun: 100,
                              scsiLun: 'key-vim.host.ScsiDisk-0200640000600a098038314647492452446a6c2f2f4c554e20432d'
                            }
                          ],
                          target: 0,
                          transport: {
                            address: [
                              '192.168.51.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          key: 'key-vim.host.ScsiTopology.Target-vmhba64:2:0',
                          lun: [
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-0200000000600a098038314647492452446a6c2f4f4c554e20432d',
                              lun: 0,
                              scsiLun: 'key-vim.host.ScsiDisk-0200000000600a098038314647492452446a6c2f4f4c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                              lun: 11,
                              scsiLun: 'key-vim.host.ScsiDisk-02000b0000600a098038314647492452446a6c2f614c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                              lun: 12,
                              scsiLun: 'key-vim.host.ScsiDisk-02000c0000600a098038314647492452446a6c2f624c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                              lun: 13,
                              scsiLun: 'key-vim.host.ScsiDisk-02000d0000600a098038314647492452446a6c2f634c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                              lun: 14,
                              scsiLun: 'key-vim.host.ScsiDisk-02000e0000600a098038314647492452446a6c2f644c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-0200140000600a098038314647492452446a6c2f664c554e20432d',
                              lun: 20,
                              scsiLun: 'key-vim.host.ScsiDisk-0200140000600a098038314647492452446a6c2f664c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                              lun: 100,
                              scsiLun: 'key-vim.host.ScsiDisk-0200640000600a098038314647492452446a6c2f2f4c554e20432d'
                            }
                          ],
                          target: 0,
                          transport: {
                            address: [
                              '192.168.52.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          key: 'key-vim.host.ScsiTopology.Target-vmhba64:1:0',
                          lun: [
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-0200000000600a098038314647492452446a6c2f4f4c554e20432d',
                              lun: 0,
                              scsiLun: 'key-vim.host.ScsiDisk-0200000000600a098038314647492452446a6c2f4f4c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                              lun: 11,
                              scsiLun: 'key-vim.host.ScsiDisk-02000b0000600a098038314647492452446a6c2f614c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                              lun: 12,
                              scsiLun: 'key-vim.host.ScsiDisk-02000c0000600a098038314647492452446a6c2f624c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                              lun: 13,
                              scsiLun: 'key-vim.host.ScsiDisk-02000d0000600a098038314647492452446a6c2f634c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                              lun: 14,
                              scsiLun: 'key-vim.host.ScsiDisk-02000e0000600a098038314647492452446a6c2f644c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-0200140000600a098038314647492452446a6c2f664c554e20432d',
                              lun: 20,
                              scsiLun: 'key-vim.host.ScsiDisk-0200140000600a098038314647492452446a6c2f664c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                              lun: 100,
                              scsiLun: 'key-vim.host.ScsiDisk-0200640000600a098038314647492452446a6c2f2f4c554e20432d'
                            }
                          ],
                          target: 0,
                          transport: {
                            address: [
                              '192.168.51.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          key: 'key-vim.host.ScsiTopology.Target-vmhba64:3:0',
                          lun: [
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-0200000000600a098038314647492452446a6c2f4f4c554e20432d',
                              lun: 0,
                              scsiLun: 'key-vim.host.ScsiDisk-0200000000600a098038314647492452446a6c2f4f4c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                              lun: 11,
                              scsiLun: 'key-vim.host.ScsiDisk-02000b0000600a098038314647492452446a6c2f614c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                              lun: 12,
                              scsiLun: 'key-vim.host.ScsiDisk-02000c0000600a098038314647492452446a6c2f624c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                              lun: 13,
                              scsiLun: 'key-vim.host.ScsiDisk-02000d0000600a098038314647492452446a6c2f634c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                              lun: 14,
                              scsiLun: 'key-vim.host.ScsiDisk-02000e0000600a098038314647492452446a6c2f644c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-0200140000600a098038314647492452446a6c2f664c554e20432d',
                              lun: 20,
                              scsiLun: 'key-vim.host.ScsiDisk-0200140000600a098038314647492452446a6c2f664c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                              lun: 100,
                              scsiLun: 'key-vim.host.ScsiDisk-0200640000600a098038314647492452446a6c2f2f4c554e20432d'
                            }
                          ],
                          target: 0,
                          transport: {
                            address: [
                              '192.168.52.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        }
                      ]
                    }
                  ]
                },
                softwareInternetScsiEnabled: true
              },
              wakeOnLanCapable: false
            },
            configStatus: 'green',
            datastore: [
              {
                ref: 'datastore-72'
              },
              {
                ref: 'datastore-78'
              },
              {
                ref: 'datastore-80'
              },
              {
                ref: 'datastore-81'
              },
              {
                ref: 'datastore-82'
              },
              {
                ref: 'datastore-85'
              },
              {
                ref: 'datastore-86'
              },
              {
                ref: 'datastore-1004'
              }
            ],
            hardware: {
              smcPresent: false
            },
            licensableResource: {
              resource: {
                numCpuCores: 20,
                numCpuPackages: 2,
                numVmsStarted: 0
              }
            },
            name: 'stor-pro-esxi01.stordata.net',
            overallStatus: 'green',
            parent: {
              ref: 'domain-c8'
            },
            ref: 'host-85480',
            runtime: {
              bootTime: new Date('2024-12-18T16:04:54.304Z'),
              connectionState: 'connected',
              dasHostState: {
                state: 'connectedToMaster'
              },
              inMaintenanceMode: false,
              powerState: 'poweredOn',
              standbyMode: 'none'
            },
            summary: {
              config: {
                faultToleranceEnabled: false,
                port: 443,
                product: {
                  apiType: 'HostAgent',
                  apiVersion: '8.0.3.0',
                  build: '24280767',
                  fullName: 'VMware ESXi 8.0.3 build-24280767',
                  licenseProductName: 'VMware ESX Server',
                  licenseProductVersion: '8.0',
                  localeBuild: '000',
                  localeVersion: 'INTL',
                  name: 'VMware ESXi',
                  osType: 'vmnix-x86',
                  productLineId: 'embeddedEsx',
                  vendor: 'VMware, Inc.',
                  version: '8.0.3'
                },
                vmotionEnabled: true
              },
              currentEVCModeKey: 'intel-haswell',
              hardware: {
                cpuMhz: 2594,
                cpuModel: 'Intel(R) Xeon(R) CPU E5-2660 v3 @ 2.60GHz',
                memorySize: 274738421760,
                model: 'UCSB-B200-M4',
                numCpuCores: 20,
                numCpuPkgs: 2,
                numCpuThreads: 40,
                numHBAs: 1,
                numNics: 10,
                uuid: '600b96c8-ea07-e211-1000-00000000006f',
                vendor: 'Cisco Systems Inc'
              },
              managementServerIp: '10.10.1.150',
              maxEVCModeKey: 'intel-haswell',
              overallStatus: 'green',
              quickStats: {
                distributedCpuFairness: 1103,
                distributedMemoryFairness: 559,
                overallCpuUsage: 4299,
                overallMemoryUsage: 126362,
                uptime: 6731111
              },
              rebootRequired: false
            },
            triggeredAlarmState: []
          },
          {
            alarmActionsEnabled: true,
            config: {
              fileSystemVolume: {
                mountInfo: [
                  {
                    mountInfo: {
                      accessMode: 'readWrite',
                      accessible: true,
                      mounted: true,
                      path: '/vmfs/volumes/60e41bdf-d3b09ff8-548d-0025b501a004'
                    },
                    vStorageSupport: 'vStorageSupported',
                    volume: {
                      blockSizeMb: 1,
                      capacity: 107105746944,
                      extent: [
                        {
                          diskName: 'naa.600a098038314647492452446a6c2f2f',
                          partition: 1
                        }
                      ],
                      local: false,
                      majorVersion: 6,
                      maxBlocks: 63963136,
                      name: 'STOR-PRO-DSLOGS',
                      ssd: true,
                      type: 'VMFS',
                      unmapGranularity: 1024,
                      unmapPriority: 'low',
                      uuid: '60e41bdf-d3b09ff8-548d-0025b501a004',
                      version: '6.82',
                      vmfsUpgradable: false
                    }
                  },
                  {
                    mountInfo: {
                      accessMode: 'readWrite',
                      accessible: true,
                      mounted: true,
                      path: '/vmfs/volumes/60e45926-8dbddbe6-ccd9-0025b501a004'
                    },
                    vStorageSupport: 'vStorageSupported',
                    volume: {
                      blockSizeMb: 1,
                      capacity: 4397778075648,
                      extent: [
                        {
                          diskName: 'naa.600a098038314647492452446a6c2f61',
                          partition: 1
                        }
                      ],
                      local: false,
                      majorVersion: 6,
                      maxBlocks: 63963136,
                      name: 'STOR-PRO-DS01',
                      ssd: true,
                      type: 'VMFS',
                      unmapGranularity: 1024,
                      unmapPriority: 'low',
                      uuid: '60e45926-8dbddbe6-ccd9-0025b501a004',
                      version: '6.82',
                      vmfsUpgradable: false
                    }
                  },
                  {
                    mountInfo: {
                      accessMode: 'readWrite',
                      accessible: true,
                      mounted: true,
                      path: '/vmfs/volumes/60e45994-249a53e0-ab06-0025b501a004'
                    },
                    vStorageSupport: 'vStorageSupported',
                    volume: {
                      blockSizeMb: 1,
                      capacity: 4397778075648,
                      extent: [
                        {
                          diskName: 'naa.600a098038314647492452446a6c2f63',
                          partition: 1
                        }
                      ],
                      local: false,
                      majorVersion: 6,
                      maxBlocks: 63963136,
                      name: 'STOR-PRO-DS03',
                      ssd: true,
                      type: 'VMFS',
                      unmapGranularity: 1024,
                      unmapPriority: 'low',
                      uuid: '60e45994-249a53e0-ab06-0025b501a004',
                      version: '6.82',
                      vmfsUpgradable: false
                    }
                  },
                  {
                    mountInfo: {
                      accessMode: 'readWrite',
                      accessible: true,
                      mounted: true,
                      path: '/vmfs/volumes/60e459e8-d65928b2-f82b-0025b501a004'
                    },
                    vStorageSupport: 'vStorageSupported',
                    volume: {
                      blockSizeMb: 1,
                      capacity: 4397778075648,
                      extent: [
                        {
                          diskName: 'naa.600a098038314647492452446a6c2f64',
                          partition: 1
                        }
                      ],
                      local: false,
                      majorVersion: 6,
                      maxBlocks: 63963136,
                      name: 'STOR-PRO-DS04',
                      ssd: true,
                      type: 'VMFS',
                      unmapGranularity: 1024,
                      unmapPriority: 'low',
                      uuid: '60e459e8-d65928b2-f82b-0025b501a004',
                      version: '6.82',
                      vmfsUpgradable: false
                    }
                  },
                  {
                    mountInfo: {
                      accessMode: 'readWrite',
                      accessible: true,
                      mounted: true,
                      path: '/vmfs/volumes/60e459fe-71c9c5fa-c12d-0025b501a004'
                    },
                    vStorageSupport: 'vStorageSupported',
                    volume: {
                      blockSizeMb: 1,
                      capacity: 4397778075648,
                      extent: [
                        {
                          diskName: 'naa.600a098038314647492452446a6c2f62',
                          partition: 1
                        }
                      ],
                      local: false,
                      majorVersion: 6,
                      maxBlocks: 63963136,
                      name: 'STOR-PRO-DS02',
                      ssd: true,
                      type: 'VMFS',
                      unmapGranularity: 1024,
                      unmapPriority: 'low',
                      uuid: '60e459fe-71c9c5fa-c12d-0025b501a004',
                      version: '6.82',
                      vmfsUpgradable: false
                    }
                  },
                  {
                    mountInfo: {
                      accessMode: 'readWrite',
                      accessible: true,
                      mounted: true,
                      path: '/vmfs/volumes/6140d672-1ddbe2ac-bc17-0025b501a005'
                    },
                    vStorageSupport: 'vStorageSupported',
                    volume: {
                      blockSizeMb: 1,
                      capacity: 1610344300544,
                      extent: [
                        {
                          diskName: 'naa.600a098038314647492452446a6c2f66',
                          partition: 1
                        }
                      ],
                      local: false,
                      majorVersion: 6,
                      maxBlocks: 63963136,
                      name: 'STOR-PRO-DSSSD',
                      ssd: true,
                      type: 'VMFS',
                      unmapGranularity: 1024,
                      unmapPriority: 'low',
                      uuid: '6140d672-1ddbe2ac-bc17-0025b501a005',
                      version: '6.82',
                      vmfsUpgradable: false
                    }
                  },
                  {
                    mountInfo: {
                      accessMode: 'readWrite',
                      accessible: true,
                      mounted: true,
                      path: '/vmfs/volumes/60bf746c-d915233a-86b3-0025b501a005'
                    },
                    vStorageSupport: 'vStorageSupported',
                    volume: {
                      blockSizeMb: 1,
                      capacity: 4026531840,
                      extent: [
                        {
                          diskName: 'naa.600a098038314647492452446a6c2f50',
                          partition: 7
                        }
                      ],
                      local: false,
                      majorVersion: 6,
                      maxBlocks: 63963136,
                      name: 'OSDATA-60bf746c-d915233a-86b3-0025b501a005',
                      ssd: true,
                      type: 'OTHER',
                      unmapGranularity: 1024,
                      unmapPriority: 'low',
                      uuid: '60bf746c-d915233a-86b3-0025b501a005',
                      version: '6.82',
                      vmfsUpgradable: false
                    }
                  },
                  {
                    mountInfo: {
                      accessMode: 'readWrite',
                      accessible: true,
                      mounted: true,
                      path: '/vmfs/volumes/d090baf9-62dcfd73'
                    },
                    vStorageSupport: 'vStorageUnsupported',
                    volume: {
                      capacity: 1044536049664,
                      name: 'STOR_PRO_DS_ISO',
                      remoteHost: '10.10.1.186',
                      remotePath: '/STOR_PRO_DS_ISO',
                      type: 'NFS'
                    }
                  },
                  {
                    mountInfo: {
                      accessMode: 'readWrite',
                      accessible: true,
                      mounted: true,
                      path: '/vmfs/volumes/8750440e-a3f9ffdc'
                    },
                    vStorageSupport: 'vStorageUnsupported',
                    volume: {
                      capacity: 3133608140800,
                      name: 'Datastore_Migration',
                      remoteHost: '10.10.1.186',
                      remotePath: '/STOR_PRO_DSNFS',
                      type: 'NFS'
                    }
                  },
                  {
                    mountInfo: {
                      accessMode: 'readOnly',
                      accessible: true,
                      mounted: true,
                      path: '/vmfs/volumes/a0751b4f-7d439610-249a-e20a10339bd0'
                    },
                    volume: {
                      capacity: 524009472,
                      name: 'BOOTBANK1',
                      type: 'OTHER'
                    }
                  },
                  {
                    mountInfo: {
                      accessMode: 'readOnly',
                      accessible: true,
                      mounted: true,
                      path: '/vmfs/volumes/586a8224-4b4ba7ef-c994-9458399fca7b'
                    },
                    volume: {
                      capacity: 524009472,
                      name: 'BOOTBANK2',
                      type: 'OTHER'
                    }
                  }
                ],
                volumeTypeList: [
                  'VMFS',
                  'NFS',
                  'NFS41',
                  'vsan',
                  'VVOL',
                  'VFFS',
                  'OTHER',
                  'PMEM'
                ]
              },
              multipathState: {
                path: [
                  {
                    name: 'vmhba64:C0:T0:L0',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C0:T0:L100',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C0:T0:L11',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C0:T0:L12',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C0:T0:L13',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C0:T0:L14',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C0:T0:L20',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C1:T0:L0',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C1:T0:L100',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C1:T0:L11',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C1:T0:L12',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C1:T0:L13',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C1:T0:L14',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C1:T0:L20',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C2:T0:L0',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C2:T0:L100',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C2:T0:L11',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C2:T0:L12',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C2:T0:L13',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C2:T0:L14',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C2:T0:L20',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C3:T0:L0',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C3:T0:L100',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C3:T0:L11',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C3:T0:L12',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C3:T0:L13',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C3:T0:L14',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C3:T0:L20',
                    pathState: 'active'
                  }
                ]
              },
              network: {
                pnic: [
                  {
                    device: 'vmnic0',
                    key: 'key-vim.host.PhysicalNic-vmnic0',
                    linkSpeed: {
                      duplex: true,
                      speedMb: 20000
                    },
                    mac: '00:25:b5:01:a0:05'
                  },
                  {
                    device: 'vmnic1',
                    key: 'key-vim.host.PhysicalNic-vmnic1',
                    linkSpeed: {
                      duplex: true,
                      speedMb: 20000
                    },
                    mac: '00:25:b5:01:b0:05'
                  },
                  {
                    device: 'vmnic2',
                    key: 'key-vim.host.PhysicalNic-vmnic2',
                    linkSpeed: {
                      duplex: true,
                      speedMb: 20000
                    },
                    mac: '00:25:b5:01:a2:05'
                  },
                  {
                    device: 'vmnic3',
                    key: 'key-vim.host.PhysicalNic-vmnic3',
                    linkSpeed: {
                      duplex: true,
                      speedMb: 20000
                    },
                    mac: '00:25:b5:01:b3:05'
                  },
                  {
                    device: 'vmnic4',
                    key: 'key-vim.host.PhysicalNic-vmnic4',
                    linkSpeed: {
                      duplex: true,
                      speedMb: 20000
                    },
                    mac: '00:25:b5:01:a4:05'
                  },
                  {
                    device: 'vmnic5',
                    key: 'key-vim.host.PhysicalNic-vmnic5',
                    linkSpeed: {
                      duplex: true,
                      speedMb: 20000
                    },
                    mac: '00:25:b5:01:b5:05'
                  },
                  {
                    device: 'vmnic6',
                    key: 'key-vim.host.PhysicalNic-vmnic6',
                    linkSpeed: {
                      duplex: true,
                      speedMb: 20000
                    },
                    mac: '00:25:b5:01:a6:01'
                  },
                  {
                    device: 'vmnic7',
                    key: 'key-vim.host.PhysicalNic-vmnic7',
                    linkSpeed: {
                      duplex: true,
                      speedMb: 20000
                    },
                    mac: '00:25:b5:01:b7:01'
                  },
                  {
                    device: 'vmnic8',
                    key: 'key-vim.host.PhysicalNic-vmnic8',
                    linkSpeed: {
                      duplex: true,
                      speedMb: 20000
                    },
                    mac: '00:25:b5:01:a8:01'
                  },
                  {
                    device: 'vmnic9',
                    key: 'key-vim.host.PhysicalNic-vmnic9',
                    linkSpeed: {
                      duplex: true,
                      speedMb: 20000
                    },
                    mac: '00:25:b5:01:b9:01'
                  }
                ],
                portgroup: [
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic6',
                            'vmnic7'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-iScsiBootPG',
                    spec: {
                      name: 'iScsiBootPG',
                      vlanId: 0,
                      vswitchName: 'iScsiBootvSwitch'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-iScsiBootvSwitch'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic7'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-iSCSI-B',
                    spec: {
                      name: 'iSCSI-B',
                      vlanId: 0,
                      vswitchName: 'iScsiBootvSwitch'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-iScsiBootvSwitch'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic6'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-iSCSI-A',
                    spec: {
                      name: 'iSCSI-A',
                      vlanId: 0,
                      vswitchName: 'iScsiBootvSwitch'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-iScsiBootvSwitch'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic0',
                            'vmnic1'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-LAN Stordata',
                    spec: {
                      name: 'LAN Stordata',
                      vlanId: 0,
                      vswitchName: 'vSwitch0'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch0'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic0',
                            'vmnic1'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-VM Network',
                    spec: {
                      name: 'VM Network',
                      vlanId: 0,
                      vswitchName: 'vSwitch0'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch0'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic0',
                            'vmnic1'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-Lan Stordata',
                    spec: {
                      name: 'Lan Stordata',
                      vlanId: 0,
                      vswitchName: 'vSwitch0'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch0'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic0'
                          ],
                          standbyNic: [
                            'vmnic1'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-Management Network',
                    spec: {
                      name: 'Management Network',
                      vlanId: 0,
                      vswitchName: 'vSwitch0'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch0'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic3'
                          ],
                          standbyNic: [
                            'vmnic2'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-vMotion-B',
                    spec: {
                      name: 'vMotion-B',
                      vlanId: 0,
                      vswitchName: 'vSwitch1'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch1'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic2'
                          ],
                          standbyNic: [
                            'vmnic3'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-vMotion-A',
                    spec: {
                      name: 'vMotion-A',
                      vlanId: 0,
                      vswitchName: 'vSwitch1'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch1'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-DMZ_CL-BYTEL',
                    spec: {
                      name: 'DMZ_CL-BYTEL',
                      vlanId: 161,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-DMZ_CSA_IVANTI',
                    spec: {
                      name: 'DMZ_CSA_IVANTI',
                      vlanId: 187,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-DMZ_IPSEC_CLD',
                    spec: {
                      name: 'DMZ_IPSEC_CLD',
                      vlanId: 160,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-DMZ_CL-AG2R',
                    spec: {
                      name: 'DMZ_CL-AG2R',
                      vlanId: 162,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-LAN_FORMATION_137',
                    spec: {
                      name: 'LAN_FORMATION_137',
                      vlanId: 137,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-LAN_IOT_136',
                    spec: {
                      name: 'LAN_IOT_136',
                      vlanId: 136,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-LAN_PRINT_135',
                    spec: {
                      name: 'LAN_PRINT_135',
                      vlanId: 135,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-LAN_PSAVV_134',
                    spec: {
                      name: 'LAN_PSAVV_134',
                      vlanId: 134,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-LAN_SUPPORT_133',
                    spec: {
                      name: 'LAN_SUPPORT_133',
                      vlanId: 133,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-LAN_ADMCOM_132',
                    spec: {
                      name: 'LAN_ADMCOM_132',
                      vlanId: 132,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-LAN_IT_131',
                    spec: {
                      name: 'LAN_IT_131',
                      vlanId: 131,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-WIFI_MOBILE',
                    spec: {
                      name: 'WIFI_MOBILE',
                      vlanId: 122,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-NFS_Stornetapp',
                    spec: {
                      name: 'NFS_Stornetapp',
                      vlanId: 601,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-LAN Prod',
                    spec: {
                      name: 'LAN Prod',
                      vlanId: 1000,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-PROD_Management',
                    spec: {
                      name: 'PROD_Management',
                      vlanId: 150,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  }
                ],
                vnic: [
                  {
                    device: 'vmk0',
                    key: 'key-vim.host.VirtualNic-vmk0',
                    port: 'key-vim.host.PortGroup.Port-100663328',
                    portgroup: 'Management Network'
                  },
                  {
                    device: 'vmk1',
                    key: 'key-vim.host.VirtualNic-vmk1',
                    port: 'key-vim.host.PortGroup.Port-67108897',
                    portgroup: 'iSCSI-A'
                  },
                  {
                    device: 'vmk2',
                    key: 'key-vim.host.VirtualNic-vmk2',
                    port: 'key-vim.host.PortGroup.Port-67108898',
                    portgroup: 'iSCSI-B'
                  },
                  {
                    device: 'vmk3',
                    key: 'key-vim.host.VirtualNic-vmk3',
                    port: 'key-vim.host.PortGroup.Port-134217763',
                    portgroup: 'vMotion-A'
                  },
                  {
                    device: 'vmk4',
                    key: 'key-vim.host.VirtualNic-vmk4',
                    port: 'key-vim.host.PortGroup.Port-134217764',
                    portgroup: 'vMotion-B'
                  }
                ]
              },
              storageDevice: {
                hostBusAdapter: [
                  {
                    bus: -1,
                    configuredStaticTarget: [
                      {
                        address: '192.168.51.2',
                        iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6',
                        parent: 'vmhba64',
                        port: 3260
                      },
                      {
                        address: '192.168.51.1',
                        iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6',
                        parent: 'vmhba64',
                        port: 3260
                      },
                      {
                        address: '192.168.52.1',
                        iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6',
                        parent: 'vmhba64',
                        port: 3260
                      },
                      {
                        address: '192.168.52.2',
                        iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6',
                        parent: 'vmhba64',
                        port: 3260
                      }
                    ],
                    device: 'vmhba64',
                    driver: 'iscsi_vmk',
                    iScsiAlias: '',
                    iScsiName: 'iqn.1987-05.com.cisco:esxi0:2',
                    isSoftwareBased: true,
                    key: 'key-vim.host.InternetScsiHba-vmhba64',
                    model: 'iSCSI Software Adapter',
                    pci: 'N/A',
                    status: 'online'
                  }
                ],
                multipathInfo: {
                  lun: [
                    {
                      id: '0200000000600a098038314647492452446a6c2f504c554e20432d',
                      key: 'key-vim.host.MultipathInfo.LogicalUnit-0200000000600a098038314647492452446a6c2f504c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-0200000000600a098038314647492452446a6c2f504c554e20432d',
                      path: [
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C0:T0:L0',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-0200000000600a098038314647492452446a6c2f504c554e20432d',
                          name: 'vmhba64:C0:T0:L0',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C3:T0:L0',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-0200000000600a098038314647492452446a6c2f504c554e20432d',
                          name: 'vmhba64:C3:T0:L0',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C2:T0:L0',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-0200000000600a098038314647492452446a6c2f504c554e20432d',
                          name: 'vmhba64:C2:T0:L0',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C1:T0:L0',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-0200000000600a098038314647492452446a6c2f504c554e20432d',
                          name: 'vmhba64:C1:T0:L0',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        }
                      ],
                      policy: {
                        policy: 'VMW_PSP_RR'
                      },
                      storageArrayTypePolicy: {
                        policy: 'VMW_SATP_ALUA'
                      }
                    },
                    {
                      id: '02000b0000600a098038314647492452446a6c2f614c554e20432d',
                      key: 'key-vim.host.MultipathInfo.LogicalUnit-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                      path: [
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C0:T0:L11',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                          name: 'vmhba64:C0:T0:L11',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C1:T0:L11',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                          name: 'vmhba64:C1:T0:L11',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C2:T0:L11',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                          name: 'vmhba64:C2:T0:L11',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C3:T0:L11',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                          name: 'vmhba64:C3:T0:L11',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        }
                      ],
                      policy: {
                        policy: 'VMW_PSP_RR'
                      },
                      storageArrayTypePolicy: {
                        policy: 'VMW_SATP_ALUA'
                      }
                    },
                    {
                      id: '02000c0000600a098038314647492452446a6c2f624c554e20432d',
                      key: 'key-vim.host.MultipathInfo.LogicalUnit-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                      path: [
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C0:T0:L12',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                          name: 'vmhba64:C0:T0:L12',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C1:T0:L12',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                          name: 'vmhba64:C1:T0:L12',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C2:T0:L12',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                          name: 'vmhba64:C2:T0:L12',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C3:T0:L12',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                          name: 'vmhba64:C3:T0:L12',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        }
                      ],
                      policy: {
                        policy: 'VMW_PSP_RR'
                      },
                      storageArrayTypePolicy: {
                        policy: 'VMW_SATP_ALUA'
                      }
                    },
                    {
                      id: '02000d0000600a098038314647492452446a6c2f634c554e20432d',
                      key: 'key-vim.host.MultipathInfo.LogicalUnit-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                      path: [
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C0:T0:L13',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                          name: 'vmhba64:C0:T0:L13',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C1:T0:L13',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                          name: 'vmhba64:C1:T0:L13',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C2:T0:L13',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                          name: 'vmhba64:C2:T0:L13',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C3:T0:L13',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                          name: 'vmhba64:C3:T0:L13',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        }
                      ],
                      policy: {
                        policy: 'VMW_PSP_RR'
                      },
                      storageArrayTypePolicy: {
                        policy: 'VMW_SATP_ALUA'
                      }
                    },
                    {
                      id: '02000e0000600a098038314647492452446a6c2f644c554e20432d',
                      key: 'key-vim.host.MultipathInfo.LogicalUnit-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                      path: [
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C0:T0:L14',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                          name: 'vmhba64:C0:T0:L14',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C1:T0:L14',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                          name: 'vmhba64:C1:T0:L14',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C2:T0:L14',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                          name: 'vmhba64:C2:T0:L14',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C3:T0:L14',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                          name: 'vmhba64:C3:T0:L14',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        }
                      ],
                      policy: {
                        policy: 'VMW_PSP_RR'
                      },
                      storageArrayTypePolicy: {
                        policy: 'VMW_SATP_ALUA'
                      }
                    },
                    {
                      id: '0200140000600a098038314647492452446a6c2f664c554e20432d',
                      key: 'key-vim.host.MultipathInfo.LogicalUnit-0200140000600a098038314647492452446a6c2f664c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-0200140000600a098038314647492452446a6c2f664c554e20432d',
                      path: [
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C0:T0:L20',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-0200140000600a098038314647492452446a6c2f664c554e20432d',
                          name: 'vmhba64:C0:T0:L20',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C1:T0:L20',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-0200140000600a098038314647492452446a6c2f664c554e20432d',
                          name: 'vmhba64:C1:T0:L20',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C2:T0:L20',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-0200140000600a098038314647492452446a6c2f664c554e20432d',
                          name: 'vmhba64:C2:T0:L20',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C3:T0:L20',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-0200140000600a098038314647492452446a6c2f664c554e20432d',
                          name: 'vmhba64:C3:T0:L20',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        }
                      ],
                      policy: {
                        policy: 'VMW_PSP_RR'
                      },
                      storageArrayTypePolicy: {
                        policy: 'VMW_SATP_ALUA'
                      }
                    },
                    {
                      id: '0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                      key: 'key-vim.host.MultipathInfo.LogicalUnit-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                      path: [
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C2:T0:L100',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                          name: 'vmhba64:C2:T0:L100',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C1:T0:L100',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                          name: 'vmhba64:C1:T0:L100',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C0:T0:L100',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                          name: 'vmhba64:C0:T0:L100',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C3:T0:L100',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                          name: 'vmhba64:C3:T0:L100',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        }
                      ],
                      policy: {
                        policy: 'VMW_PSP_RR'
                      },
                      storageArrayTypePolicy: {
                        policy: 'VMW_SATP_ALUA'
                      }
                    }
                  ]
                },
                plugStoreTopology: {
                  adapter: [
                    {
                      adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                      key: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      path: [
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L0',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L100',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L100',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L100',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L11',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L12',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L13',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L14',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L11',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L12',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L13',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L14',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L11',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L12',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L13',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L14',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L11',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L12',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L13',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L14',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L0',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L0',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L20',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L20',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L0',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L20',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L20',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L100'
                      ]
                    }
                  ],
                  device: [
                    {
                      key: 'key-vim.host.PlugStoreTopology.Device-0200000000600a098038314647492452446a6c2f504c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-0200000000600a098038314647492452446a6c2f504c554e20432d',
                      path: [
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L0',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L0',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L0',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L0'
                      ]
                    },
                    {
                      key: 'key-vim.host.PlugStoreTopology.Device-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                      path: [
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L11',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L11',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L11',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L11'
                      ]
                    },
                    {
                      key: 'key-vim.host.PlugStoreTopology.Device-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                      path: [
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L12',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L12',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L12',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L12'
                      ]
                    },
                    {
                      key: 'key-vim.host.PlugStoreTopology.Device-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                      path: [
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L13',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L13',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L13',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L13'
                      ]
                    },
                    {
                      key: 'key-vim.host.PlugStoreTopology.Device-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                      path: [
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L14',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L14',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L14',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L14'
                      ]
                    },
                    {
                      key: 'key-vim.host.PlugStoreTopology.Device-0200140000600a098038314647492452446a6c2f664c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-0200140000600a098038314647492452446a6c2f664c554e20432d',
                      path: [
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L20',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L20',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L20',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L20'
                      ]
                    },
                    {
                      key: 'key-vim.host.PlugStoreTopology.Device-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                      path: [
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L100',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L100',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L100',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L100'
                      ]
                    }
                  ],
                  path: [
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 0,
                      device: 'key-vim.host.PlugStoreTopology.Device-0200000000600a098038314647492452446a6c2f504c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L0',
                      lunNumber: 0,
                      name: 'vmhba64:C0:T0:L0',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1034',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 2,
                      device: 'key-vim.host.PlugStoreTopology.Device-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L100',
                      lunNumber: 100,
                      name: 'vmhba64:C2:T0:L100',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000015,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1030',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 1,
                      device: 'key-vim.host.PlugStoreTopology.Device-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L100',
                      lunNumber: 100,
                      name: 'vmhba64:C1:T0:L100',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000014,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1032',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 0,
                      device: 'key-vim.host.PlugStoreTopology.Device-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L100',
                      lunNumber: 100,
                      name: 'vmhba64:C0:T0:L100',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1034',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 0,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L11',
                      lunNumber: 11,
                      name: 'vmhba64:C0:T0:L11',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1034',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 0,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L12',
                      lunNumber: 12,
                      name: 'vmhba64:C0:T0:L12',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1034',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 0,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L13',
                      lunNumber: 13,
                      name: 'vmhba64:C0:T0:L13',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1034',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 0,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L14',
                      lunNumber: 14,
                      name: 'vmhba64:C0:T0:L14',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1034',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 1,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L11',
                      lunNumber: 11,
                      name: 'vmhba64:C1:T0:L11',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000014,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1032',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 1,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L12',
                      lunNumber: 12,
                      name: 'vmhba64:C1:T0:L12',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000014,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1032',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 1,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L13',
                      lunNumber: 13,
                      name: 'vmhba64:C1:T0:L13',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000014,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1032',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 1,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L14',
                      lunNumber: 14,
                      name: 'vmhba64:C1:T0:L14',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000014,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1032',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 2,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L11',
                      lunNumber: 11,
                      name: 'vmhba64:C2:T0:L11',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000015,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1030',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 2,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L12',
                      lunNumber: 12,
                      name: 'vmhba64:C2:T0:L12',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000015,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1030',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 2,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L13',
                      lunNumber: 13,
                      name: 'vmhba64:C2:T0:L13',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000015,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1030',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 2,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L14',
                      lunNumber: 14,
                      name: 'vmhba64:C2:T0:L14',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000015,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1030',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 3,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L11',
                      lunNumber: 11,
                      name: 'vmhba64:C3:T0:L11',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000016,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1035',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 3,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L12',
                      lunNumber: 12,
                      name: 'vmhba64:C3:T0:L12',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000016,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1035',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 3,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L13',
                      lunNumber: 13,
                      name: 'vmhba64:C3:T0:L13',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000016,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1035',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 3,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L14',
                      lunNumber: 14,
                      name: 'vmhba64:C3:T0:L14',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000016,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1035',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 3,
                      device: 'key-vim.host.PlugStoreTopology.Device-0200000000600a098038314647492452446a6c2f504c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L0',
                      lunNumber: 0,
                      name: 'vmhba64:C3:T0:L0',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000016,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1035',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 2,
                      device: 'key-vim.host.PlugStoreTopology.Device-0200000000600a098038314647492452446a6c2f504c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L0',
                      lunNumber: 0,
                      name: 'vmhba64:C2:T0:L0',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000015,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1030',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 0,
                      device: 'key-vim.host.PlugStoreTopology.Device-0200140000600a098038314647492452446a6c2f664c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L20',
                      lunNumber: 20,
                      name: 'vmhba64:C0:T0:L20',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1034',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 1,
                      device: 'key-vim.host.PlugStoreTopology.Device-0200140000600a098038314647492452446a6c2f664c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L20',
                      lunNumber: 20,
                      name: 'vmhba64:C1:T0:L20',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000014,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1032',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 1,
                      device: 'key-vim.host.PlugStoreTopology.Device-0200000000600a098038314647492452446a6c2f504c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L0',
                      lunNumber: 0,
                      name: 'vmhba64:C1:T0:L0',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000014,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1032',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 2,
                      device: 'key-vim.host.PlugStoreTopology.Device-0200140000600a098038314647492452446a6c2f664c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L20',
                      lunNumber: 20,
                      name: 'vmhba64:C2:T0:L20',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000015,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1030',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 3,
                      device: 'key-vim.host.PlugStoreTopology.Device-0200140000600a098038314647492452446a6c2f664c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L20',
                      lunNumber: 20,
                      name: 'vmhba64:C3:T0:L20',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000016,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1035',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 3,
                      device: 'key-vim.host.PlugStoreTopology.Device-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L100',
                      lunNumber: 100,
                      name: 'vmhba64:C3:T0:L100',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000016,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1035',
                      targetNumber: 0
                    }
                  ],
                  plugin: [
                    {
                      claimedPath: [
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L0',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L100',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L100',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L100',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L11',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L12',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L13',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L14',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L11',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L12',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L13',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L14',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L11',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L12',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L13',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L14',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L11',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L12',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L13',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L14',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L0',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L0',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L20',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L20',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L0',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L20',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L20',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L100'
                      ],
                      device: [
                        'key-vim.host.PlugStoreTopology.Device-0200000000600a098038314647492452446a6c2f504c554e20432d',
                        'key-vim.host.PlugStoreTopology.Device-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                        'key-vim.host.PlugStoreTopology.Device-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                        'key-vim.host.PlugStoreTopology.Device-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                        'key-vim.host.PlugStoreTopology.Device-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                        'key-vim.host.PlugStoreTopology.Device-0200140000600a098038314647492452446a6c2f664c554e20432d',
                        'key-vim.host.PlugStoreTopology.Device-0200640000600a098038314647492452446a6c2f2f4c554e20432d'
                      ],
                      key: 'key-vim.host.PlugStoreTopology.Plugin-NMP',
                      name: 'NMP'
                    }
                  ],
                  target: [
                    {
                      key: 'key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1034',
                      transport: {
                        address: [
                          '192.168.51.2:3260'
                        ],
                        classes: [
                          'HostInternetScsiTargetTransport',
                          'HostTargetTransport'
                        ],
                        iScsiAlias: '',
                        iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                      }
                    },
                    {
                      key: 'key-vim.host.PlugStoreTopology.Target-00023d000015,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1030',
                      transport: {
                        address: [
                          '192.168.52.1:3260'
                        ],
                        classes: [
                          'HostInternetScsiTargetTransport',
                          'HostTargetTransport'
                        ],
                        iScsiAlias: '',
                        iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                      }
                    },
                    {
                      key: 'key-vim.host.PlugStoreTopology.Target-00023d000014,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1032',
                      transport: {
                        address: [
                          '192.168.51.1:3260'
                        ],
                        classes: [
                          'HostInternetScsiTargetTransport',
                          'HostTargetTransport'
                        ],
                        iScsiAlias: '',
                        iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                      }
                    },
                    {
                      key: 'key-vim.host.PlugStoreTopology.Target-00023d000016,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1035',
                      transport: {
                        address: [
                          '192.168.52.2:3260'
                        ],
                        classes: [
                          'HostInternetScsiTargetTransport',
                          'HostTargetTransport'
                        ],
                        iScsiAlias: '',
                        iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                      }
                    }
                  ]
                },
                scsiLun: [
                  {
                    alternateName: [
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'SERIALNUM',
                        namespaceId: 4
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'NAA',
                        namespaceId: 3
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      }
                    ],
                    canonicalName: 'naa.600a098038314647492452446a6c2f50',
                    capabilities: {
                      updateDisplayNameSupported: true
                    },
                    descriptor: [
                      {
                        id: 'naa.600a098038314647492452446a6c2f50',
                        quality: 'highQuality'
                      },
                      {
                        id: 'vml.0200000000600a098038314647492452446a6c2f504c554e20432d',
                        quality: 'mediumQuality'
                      },
                      {
                        id: '0200000000600a098038314647492452446a6c2f504c554e20432d',
                        quality: 'mediumQuality'
                      }
                    ],
                    deviceName: '/vmfs/devices/disks/naa.600a098038314647492452446a6c2f50',
                    deviceType: 'disk',
                    displayName: 'NETAPP iSCSI Disk (naa.600a098038314647492452446a6c2f50)',
                    durableName: {
                      namespace: 'NAA',
                      namespaceId: 3
                    },
                    key: 'key-vim.host.ScsiDisk-0200000000600a098038314647492452446a6c2f504c554e20432d',
                    lunType: 'disk',
                    model: 'LUN C-Mode',
                    operationalState: [
                      'ok'
                    ],
                    queueDepth: 128,
                    revision: '9131',
                    scsiLevel: 6,
                    serialNumber: 'unavailable',
                    uuid: '0200000000600a098038314647492452446a6c2f504c554e20432d',
                    vStorageSupport: 'vStorageSupported',
                    vendor: 'NETAPP'
                  },
                  {
                    alternateName: [
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'SERIALNUM',
                        namespaceId: 4
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'NAA',
                        namespaceId: 3
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      }
                    ],
                    canonicalName: 'naa.600a098038314647492452446a6c2f61',
                    capabilities: {
                      updateDisplayNameSupported: true
                    },
                    descriptor: [
                      {
                        id: 'naa.600a098038314647492452446a6c2f61',
                        quality: 'highQuality'
                      },
                      {
                        id: 'vml.02000b0000600a098038314647492452446a6c2f614c554e20432d',
                        quality: 'mediumQuality'
                      },
                      {
                        id: '02000b0000600a098038314647492452446a6c2f614c554e20432d',
                        quality: 'mediumQuality'
                      }
                    ],
                    deviceName: '/vmfs/devices/disks/naa.600a098038314647492452446a6c2f61',
                    deviceType: 'disk',
                    displayName: 'NETAPP iSCSI Disk (naa.600a098038314647492452446a6c2f61)',
                    durableName: {
                      namespace: 'NAA',
                      namespaceId: 3
                    },
                    key: 'key-vim.host.ScsiDisk-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                    lunType: 'disk',
                    model: 'LUN C-Mode',
                    operationalState: [
                      'ok'
                    ],
                    queueDepth: 128,
                    revision: '9131',
                    scsiLevel: 6,
                    serialNumber: 'unavailable',
                    uuid: '02000b0000600a098038314647492452446a6c2f614c554e20432d',
                    vStorageSupport: 'vStorageSupported',
                    vendor: 'NETAPP'
                  },
                  {
                    alternateName: [
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'SERIALNUM',
                        namespaceId: 4
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'NAA',
                        namespaceId: 3
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      }
                    ],
                    canonicalName: 'naa.600a098038314647492452446a6c2f62',
                    capabilities: {
                      updateDisplayNameSupported: true
                    },
                    descriptor: [
                      {
                        id: 'naa.600a098038314647492452446a6c2f62',
                        quality: 'highQuality'
                      },
                      {
                        id: 'vml.02000c0000600a098038314647492452446a6c2f624c554e20432d',
                        quality: 'mediumQuality'
                      },
                      {
                        id: '02000c0000600a098038314647492452446a6c2f624c554e20432d',
                        quality: 'mediumQuality'
                      }
                    ],
                    deviceName: '/vmfs/devices/disks/naa.600a098038314647492452446a6c2f62',
                    deviceType: 'disk',
                    displayName: 'NETAPP iSCSI Disk (naa.600a098038314647492452446a6c2f62)',
                    durableName: {
                      namespace: 'NAA',
                      namespaceId: 3
                    },
                    key: 'key-vim.host.ScsiDisk-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                    lunType: 'disk',
                    model: 'LUN C-Mode',
                    operationalState: [
                      'ok'
                    ],
                    queueDepth: 128,
                    revision: '9131',
                    scsiLevel: 6,
                    serialNumber: 'unavailable',
                    uuid: '02000c0000600a098038314647492452446a6c2f624c554e20432d',
                    vStorageSupport: 'vStorageSupported',
                    vendor: 'NETAPP'
                  },
                  {
                    alternateName: [
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'SERIALNUM',
                        namespaceId: 4
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'NAA',
                        namespaceId: 3
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      }
                    ],
                    canonicalName: 'naa.600a098038314647492452446a6c2f63',
                    capabilities: {
                      updateDisplayNameSupported: true
                    },
                    descriptor: [
                      {
                        id: 'naa.600a098038314647492452446a6c2f63',
                        quality: 'highQuality'
                      },
                      {
                        id: 'vml.02000d0000600a098038314647492452446a6c2f634c554e20432d',
                        quality: 'mediumQuality'
                      },
                      {
                        id: '02000d0000600a098038314647492452446a6c2f634c554e20432d',
                        quality: 'mediumQuality'
                      }
                    ],
                    deviceName: '/vmfs/devices/disks/naa.600a098038314647492452446a6c2f63',
                    deviceType: 'disk',
                    displayName: 'NETAPP iSCSI Disk (naa.600a098038314647492452446a6c2f63)',
                    durableName: {
                      namespace: 'NAA',
                      namespaceId: 3
                    },
                    key: 'key-vim.host.ScsiDisk-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                    lunType: 'disk',
                    model: 'LUN C-Mode',
                    operationalState: [
                      'ok'
                    ],
                    queueDepth: 128,
                    revision: '9131',
                    scsiLevel: 6,
                    serialNumber: 'unavailable',
                    uuid: '02000d0000600a098038314647492452446a6c2f634c554e20432d',
                    vStorageSupport: 'vStorageSupported',
                    vendor: 'NETAPP'
                  },
                  {
                    alternateName: [
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'SERIALNUM',
                        namespaceId: 4
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'NAA',
                        namespaceId: 3
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      }
                    ],
                    canonicalName: 'naa.600a098038314647492452446a6c2f64',
                    capabilities: {
                      updateDisplayNameSupported: true
                    },
                    descriptor: [
                      {
                        id: 'naa.600a098038314647492452446a6c2f64',
                        quality: 'highQuality'
                      },
                      {
                        id: 'vml.02000e0000600a098038314647492452446a6c2f644c554e20432d',
                        quality: 'mediumQuality'
                      },
                      {
                        id: '02000e0000600a098038314647492452446a6c2f644c554e20432d',
                        quality: 'mediumQuality'
                      }
                    ],
                    deviceName: '/vmfs/devices/disks/naa.600a098038314647492452446a6c2f64',
                    deviceType: 'disk',
                    displayName: 'NETAPP iSCSI Disk (naa.600a098038314647492452446a6c2f64)',
                    durableName: {
                      namespace: 'NAA',
                      namespaceId: 3
                    },
                    key: 'key-vim.host.ScsiDisk-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                    lunType: 'disk',
                    model: 'LUN C-Mode',
                    operationalState: [
                      'ok'
                    ],
                    queueDepth: 128,
                    revision: '9131',
                    scsiLevel: 6,
                    serialNumber: 'unavailable',
                    uuid: '02000e0000600a098038314647492452446a6c2f644c554e20432d',
                    vStorageSupport: 'vStorageSupported',
                    vendor: 'NETAPP'
                  },
                  {
                    alternateName: [
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'SERIALNUM',
                        namespaceId: 4
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'NAA',
                        namespaceId: 3
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      }
                    ],
                    canonicalName: 'naa.600a098038314647492452446a6c2f66',
                    capabilities: {
                      updateDisplayNameSupported: true
                    },
                    descriptor: [
                      {
                        id: 'naa.600a098038314647492452446a6c2f66',
                        quality: 'highQuality'
                      },
                      {
                        id: 'vml.0200140000600a098038314647492452446a6c2f664c554e20432d',
                        quality: 'mediumQuality'
                      },
                      {
                        id: '0200140000600a098038314647492452446a6c2f664c554e20432d',
                        quality: 'mediumQuality'
                      }
                    ],
                    deviceName: '/vmfs/devices/disks/naa.600a098038314647492452446a6c2f66',
                    deviceType: 'disk',
                    displayName: 'NETAPP iSCSI Disk (naa.600a098038314647492452446a6c2f66)',
                    durableName: {
                      namespace: 'NAA',
                      namespaceId: 3
                    },
                    key: 'key-vim.host.ScsiDisk-0200140000600a098038314647492452446a6c2f664c554e20432d',
                    lunType: 'disk',
                    model: 'LUN C-Mode',
                    operationalState: [
                      'ok'
                    ],
                    queueDepth: 128,
                    revision: '9131',
                    scsiLevel: 6,
                    serialNumber: 'unavailable',
                    uuid: '0200140000600a098038314647492452446a6c2f664c554e20432d',
                    vStorageSupport: 'vStorageSupported',
                    vendor: 'NETAPP'
                  },
                  {
                    alternateName: [
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'SERIALNUM',
                        namespaceId: 4
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'NAA',
                        namespaceId: 3
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      }
                    ],
                    canonicalName: 'naa.600a098038314647492452446a6c2f2f',
                    capabilities: {
                      updateDisplayNameSupported: true
                    },
                    descriptor: [
                      {
                        id: 'naa.600a098038314647492452446a6c2f2f',
                        quality: 'highQuality'
                      },
                      {
                        id: 'vml.0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                        quality: 'mediumQuality'
                      },
                      {
                        id: '0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                        quality: 'mediumQuality'
                      }
                    ],
                    deviceName: '/vmfs/devices/disks/naa.600a098038314647492452446a6c2f2f',
                    deviceType: 'disk',
                    displayName: 'NETAPP iSCSI Disk (naa.600a098038314647492452446a6c2f2f)',
                    durableName: {
                      namespace: 'NAA',
                      namespaceId: 3
                    },
                    key: 'key-vim.host.ScsiDisk-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                    lunType: 'disk',
                    model: 'LUN C-Mode',
                    operationalState: [
                      'ok'
                    ],
                    queueDepth: 128,
                    revision: '9131',
                    scsiLevel: 6,
                    serialNumber: 'unavailable',
                    uuid: '0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                    vStorageSupport: 'vStorageSupported',
                    vendor: 'NETAPP'
                  }
                ],
                scsiTopology: {
                  adapter: [
                    {
                      adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                      key: 'key-vim.host.ScsiTopology.Interface-vmhba64',
                      target: [
                        {
                          key: 'key-vim.host.ScsiTopology.Target-vmhba64:0:0',
                          lun: [
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-0200000000600a098038314647492452446a6c2f504c554e20432d',
                              lun: 0,
                              scsiLun: 'key-vim.host.ScsiDisk-0200000000600a098038314647492452446a6c2f504c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                              lun: 11,
                              scsiLun: 'key-vim.host.ScsiDisk-02000b0000600a098038314647492452446a6c2f614c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                              lun: 12,
                              scsiLun: 'key-vim.host.ScsiDisk-02000c0000600a098038314647492452446a6c2f624c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                              lun: 13,
                              scsiLun: 'key-vim.host.ScsiDisk-02000d0000600a098038314647492452446a6c2f634c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                              lun: 14,
                              scsiLun: 'key-vim.host.ScsiDisk-02000e0000600a098038314647492452446a6c2f644c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-0200140000600a098038314647492452446a6c2f664c554e20432d',
                              lun: 20,
                              scsiLun: 'key-vim.host.ScsiDisk-0200140000600a098038314647492452446a6c2f664c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                              lun: 100,
                              scsiLun: 'key-vim.host.ScsiDisk-0200640000600a098038314647492452446a6c2f2f4c554e20432d'
                            }
                          ],
                          target: 0,
                          transport: {
                            address: [
                              '192.168.51.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          key: 'key-vim.host.ScsiTopology.Target-vmhba64:2:0',
                          lun: [
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-0200000000600a098038314647492452446a6c2f504c554e20432d',
                              lun: 0,
                              scsiLun: 'key-vim.host.ScsiDisk-0200000000600a098038314647492452446a6c2f504c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                              lun: 11,
                              scsiLun: 'key-vim.host.ScsiDisk-02000b0000600a098038314647492452446a6c2f614c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                              lun: 12,
                              scsiLun: 'key-vim.host.ScsiDisk-02000c0000600a098038314647492452446a6c2f624c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                              lun: 13,
                              scsiLun: 'key-vim.host.ScsiDisk-02000d0000600a098038314647492452446a6c2f634c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                              lun: 14,
                              scsiLun: 'key-vim.host.ScsiDisk-02000e0000600a098038314647492452446a6c2f644c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-0200140000600a098038314647492452446a6c2f664c554e20432d',
                              lun: 20,
                              scsiLun: 'key-vim.host.ScsiDisk-0200140000600a098038314647492452446a6c2f664c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                              lun: 100,
                              scsiLun: 'key-vim.host.ScsiDisk-0200640000600a098038314647492452446a6c2f2f4c554e20432d'
                            }
                          ],
                          target: 0,
                          transport: {
                            address: [
                              '192.168.52.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          key: 'key-vim.host.ScsiTopology.Target-vmhba64:1:0',
                          lun: [
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-0200000000600a098038314647492452446a6c2f504c554e20432d',
                              lun: 0,
                              scsiLun: 'key-vim.host.ScsiDisk-0200000000600a098038314647492452446a6c2f504c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                              lun: 11,
                              scsiLun: 'key-vim.host.ScsiDisk-02000b0000600a098038314647492452446a6c2f614c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                              lun: 12,
                              scsiLun: 'key-vim.host.ScsiDisk-02000c0000600a098038314647492452446a6c2f624c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                              lun: 13,
                              scsiLun: 'key-vim.host.ScsiDisk-02000d0000600a098038314647492452446a6c2f634c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                              lun: 14,
                              scsiLun: 'key-vim.host.ScsiDisk-02000e0000600a098038314647492452446a6c2f644c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-0200140000600a098038314647492452446a6c2f664c554e20432d',
                              lun: 20,
                              scsiLun: 'key-vim.host.ScsiDisk-0200140000600a098038314647492452446a6c2f664c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                              lun: 100,
                              scsiLun: 'key-vim.host.ScsiDisk-0200640000600a098038314647492452446a6c2f2f4c554e20432d'
                            }
                          ],
                          target: 0,
                          transport: {
                            address: [
                              '192.168.51.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          key: 'key-vim.host.ScsiTopology.Target-vmhba64:3:0',
                          lun: [
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-0200000000600a098038314647492452446a6c2f504c554e20432d',
                              lun: 0,
                              scsiLun: 'key-vim.host.ScsiDisk-0200000000600a098038314647492452446a6c2f504c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                              lun: 11,
                              scsiLun: 'key-vim.host.ScsiDisk-02000b0000600a098038314647492452446a6c2f614c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                              lun: 12,
                              scsiLun: 'key-vim.host.ScsiDisk-02000c0000600a098038314647492452446a6c2f624c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                              lun: 13,
                              scsiLun: 'key-vim.host.ScsiDisk-02000d0000600a098038314647492452446a6c2f634c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                              lun: 14,
                              scsiLun: 'key-vim.host.ScsiDisk-02000e0000600a098038314647492452446a6c2f644c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-0200140000600a098038314647492452446a6c2f664c554e20432d',
                              lun: 20,
                              scsiLun: 'key-vim.host.ScsiDisk-0200140000600a098038314647492452446a6c2f664c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                              lun: 100,
                              scsiLun: 'key-vim.host.ScsiDisk-0200640000600a098038314647492452446a6c2f2f4c554e20432d'
                            }
                          ],
                          target: 0,
                          transport: {
                            address: [
                              '192.168.52.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        }
                      ]
                    }
                  ]
                },
                softwareInternetScsiEnabled: true
              },
              wakeOnLanCapable: false
            },
            configStatus: 'green',
            datastore: [
              {
                ref: 'datastore-72'
              },
              {
                ref: 'datastore-78'
              },
              {
                ref: 'datastore-80'
              },
              {
                ref: 'datastore-81'
              },
              {
                ref: 'datastore-82'
              },
              {
                ref: 'datastore-85'
              },
              {
                ref: 'datastore-86'
              },
              {
                ref: 'datastore-1004'
              }
            ],
            hardware: {
              smcPresent: false
            },
            licensableResource: {
              resource: {
                numCpuCores: 20,
                numCpuPackages: 2,
                numVmsStarted: 0
              }
            },
            name: 'stor-pro-esxi02.stordata.net',
            overallStatus: 'green',
            parent: {
              ref: 'domain-c8'
            },
            ref: 'host-85557',
            runtime: {
              bootTime: new Date('2024-12-18T17:22:23.204Z'),
              connectionState: 'connected',
              dasHostState: {
                state: 'master'
              },
              inMaintenanceMode: false,
              powerState: 'poweredOn',
              standbyMode: 'none'
            },
            summary: {
              config: {
                faultToleranceEnabled: false,
                port: 443,
                product: {
                  apiType: 'HostAgent',
                  apiVersion: '8.0.3.0',
                  build: '24280767',
                  fullName: 'VMware ESXi 8.0.3 build-24280767',
                  licenseProductName: 'VMware ESX Server',
                  licenseProductVersion: '8.0',
                  localeBuild: '000',
                  localeVersion: 'INTL',
                  name: 'VMware ESXi',
                  osType: 'vmnix-x86',
                  productLineId: 'embeddedEsx',
                  vendor: 'VMware, Inc.',
                  version: '8.0.3'
                },
                vmotionEnabled: true
              },
              currentEVCModeKey: 'intel-haswell',
              hardware: {
                cpuMhz: 2594,
                cpuModel: 'Intel(R) Xeon(R) CPU E5-2660 v3 @ 2.60GHz',
                memorySize: 274738421760,
                model: 'UCSB-B200-M4',
                numCpuCores: 20,
                numCpuPkgs: 2,
                numCpuThreads: 40,
                numHBAs: 1,
                numNics: 10,
                uuid: '600b96c8-ea07-e211-1000-00000000007f',
                vendor: 'Cisco Systems Inc'
              },
              managementServerIp: '10.10.1.150',
              maxEVCModeKey: 'intel-haswell',
              overallStatus: 'green',
              quickStats: {
                distributedCpuFairness: 10000,
                distributedMemoryFairness: 10000,
                overallCpuUsage: 88,
                overallMemoryUsage: 3716,
                uptime: 6726553
              },
              rebootRequired: false
            },
            triggeredAlarmState: []
          },
          {
            alarmActionsEnabled: true,
            config: {
              fileSystemVolume: {
                mountInfo: [
                  {
                    mountInfo: {
                      accessMode: 'readWrite',
                      accessible: true,
                      mounted: true,
                      path: '/vmfs/volumes/60e41bdf-d3b09ff8-548d-0025b501a004'
                    },
                    vStorageSupport: 'vStorageSupported',
                    volume: {
                      blockSizeMb: 1,
                      capacity: 107105746944,
                      extent: [
                        {
                          diskName: 'naa.600a098038314647492452446a6c2f2f',
                          partition: 1
                        }
                      ],
                      local: false,
                      majorVersion: 6,
                      maxBlocks: 63963136,
                      name: 'STOR-PRO-DSLOGS',
                      ssd: true,
                      type: 'VMFS',
                      unmapGranularity: 1024,
                      unmapPriority: 'low',
                      uuid: '60e41bdf-d3b09ff8-548d-0025b501a004',
                      version: '6.82',
                      vmfsUpgradable: false
                    }
                  },
                  {
                    mountInfo: {
                      accessMode: 'readWrite',
                      accessible: true,
                      mounted: true,
                      path: '/vmfs/volumes/60e45926-8dbddbe6-ccd9-0025b501a004'
                    },
                    vStorageSupport: 'vStorageSupported',
                    volume: {
                      blockSizeMb: 1,
                      capacity: 4397778075648,
                      extent: [
                        {
                          diskName: 'naa.600a098038314647492452446a6c2f61',
                          partition: 1
                        }
                      ],
                      local: false,
                      majorVersion: 6,
                      maxBlocks: 63963136,
                      name: 'STOR-PRO-DS01',
                      ssd: true,
                      type: 'VMFS',
                      unmapGranularity: 1024,
                      unmapPriority: 'low',
                      uuid: '60e45926-8dbddbe6-ccd9-0025b501a004',
                      version: '6.82',
                      vmfsUpgradable: false
                    }
                  },
                  {
                    mountInfo: {
                      accessMode: 'readWrite',
                      accessible: true,
                      mounted: true,
                      path: '/vmfs/volumes/60e45994-249a53e0-ab06-0025b501a004'
                    },
                    vStorageSupport: 'vStorageSupported',
                    volume: {
                      blockSizeMb: 1,
                      capacity: 4397778075648,
                      extent: [
                        {
                          diskName: 'naa.600a098038314647492452446a6c2f63',
                          partition: 1
                        }
                      ],
                      local: false,
                      majorVersion: 6,
                      maxBlocks: 63963136,
                      name: 'STOR-PRO-DS03',
                      ssd: true,
                      type: 'VMFS',
                      unmapGranularity: 1024,
                      unmapPriority: 'low',
                      uuid: '60e45994-249a53e0-ab06-0025b501a004',
                      version: '6.82',
                      vmfsUpgradable: false
                    }
                  },
                  {
                    mountInfo: {
                      accessMode: 'readWrite',
                      accessible: true,
                      mounted: true,
                      path: '/vmfs/volumes/60e459e8-d65928b2-f82b-0025b501a004'
                    },
                    vStorageSupport: 'vStorageSupported',
                    volume: {
                      blockSizeMb: 1,
                      capacity: 4397778075648,
                      extent: [
                        {
                          diskName: 'naa.600a098038314647492452446a6c2f64',
                          partition: 1
                        }
                      ],
                      local: false,
                      majorVersion: 6,
                      maxBlocks: 63963136,
                      name: 'STOR-PRO-DS04',
                      ssd: true,
                      type: 'VMFS',
                      unmapGranularity: 1024,
                      unmapPriority: 'low',
                      uuid: '60e459e8-d65928b2-f82b-0025b501a004',
                      version: '6.82',
                      vmfsUpgradable: false
                    }
                  },
                  {
                    mountInfo: {
                      accessMode: 'readWrite',
                      accessible: true,
                      mounted: true,
                      path: '/vmfs/volumes/60e459fe-71c9c5fa-c12d-0025b501a004'
                    },
                    vStorageSupport: 'vStorageSupported',
                    volume: {
                      blockSizeMb: 1,
                      capacity: 4397778075648,
                      extent: [
                        {
                          diskName: 'naa.600a098038314647492452446a6c2f62',
                          partition: 1
                        }
                      ],
                      local: false,
                      majorVersion: 6,
                      maxBlocks: 63963136,
                      name: 'STOR-PRO-DS02',
                      ssd: true,
                      type: 'VMFS',
                      unmapGranularity: 1024,
                      unmapPriority: 'low',
                      uuid: '60e459fe-71c9c5fa-c12d-0025b501a004',
                      version: '6.82',
                      vmfsUpgradable: false
                    }
                  },
                  {
                    mountInfo: {
                      accessMode: 'readWrite',
                      accessible: true,
                      mounted: true,
                      path: '/vmfs/volumes/6140d672-1ddbe2ac-bc17-0025b501a005'
                    },
                    vStorageSupport: 'vStorageSupported',
                    volume: {
                      blockSizeMb: 1,
                      capacity: 1610344300544,
                      extent: [
                        {
                          diskName: 'naa.600a098038314647492452446a6c2f66',
                          partition: 1
                        }
                      ],
                      local: false,
                      majorVersion: 6,
                      maxBlocks: 63963136,
                      name: 'STOR-PRO-DSSSD',
                      ssd: true,
                      type: 'VMFS',
                      unmapGranularity: 1024,
                      unmapPriority: 'low',
                      uuid: '6140d672-1ddbe2ac-bc17-0025b501a005',
                      version: '6.82',
                      vmfsUpgradable: false
                    }
                  },
                  {
                    mountInfo: {
                      accessMode: 'readWrite',
                      accessible: true,
                      mounted: true,
                      path: '/vmfs/volumes/60bf811c-30e2a1e0-5593-0025b501a007'
                    },
                    vStorageSupport: 'vStorageSupported',
                    volume: {
                      blockSizeMb: 1,
                      capacity: 4026531840,
                      extent: [
                        {
                          diskName: 'naa.600a098038314647492452446a6c2f52',
                          partition: 7
                        }
                      ],
                      local: false,
                      majorVersion: 6,
                      maxBlocks: 63963136,
                      name: 'OSDATA-60bf811c-30e2a1e0-5593-0025b501a007',
                      ssd: true,
                      type: 'OTHER',
                      unmapGranularity: 1024,
                      unmapPriority: 'low',
                      uuid: '60bf811c-30e2a1e0-5593-0025b501a007',
                      version: '6.82',
                      vmfsUpgradable: false
                    }
                  },
                  {
                    mountInfo: {
                      accessMode: 'readWrite',
                      accessible: true,
                      mounted: true,
                      path: '/vmfs/volumes/d090baf9-62dcfd73'
                    },
                    vStorageSupport: 'vStorageUnsupported',
                    volume: {
                      capacity: 1044536049664,
                      name: 'STOR_PRO_DS_ISO',
                      remoteHost: '10.10.1.186',
                      remotePath: '/STOR_PRO_DS_ISO',
                      type: 'NFS'
                    }
                  },
                  {
                    mountInfo: {
                      accessMode: 'readWrite',
                      accessible: true,
                      mounted: true,
                      path: '/vmfs/volumes/8750440e-a3f9ffdc'
                    },
                    vStorageSupport: 'vStorageUnsupported',
                    volume: {
                      capacity: 3133608140800,
                      name: 'Datastore_Migration',
                      remoteHost: '10.10.1.186',
                      remotePath: '/STOR_PRO_DSNFS',
                      type: 'NFS'
                    }
                  },
                  {
                    mountInfo: {
                      accessMode: 'readOnly',
                      accessible: true,
                      mounted: true,
                      path: '/vmfs/volumes/30ffcc42-23447224-f781-65b31ef832ae'
                    },
                    volume: {
                      capacity: 524009472,
                      name: 'BOOTBANK1',
                      type: 'OTHER'
                    }
                  },
                  {
                    mountInfo: {
                      accessMode: 'readOnly',
                      accessible: true,
                      mounted: true,
                      path: '/vmfs/volumes/371abce1-1243146b-1498-e5725dfc1c4f'
                    },
                    volume: {
                      capacity: 524009472,
                      name: 'BOOTBANK2',
                      type: 'OTHER'
                    }
                  }
                ],
                volumeTypeList: [
                  'VMFS',
                  'NFS',
                  'NFS41',
                  'vsan',
                  'VVOL',
                  'VFFS',
                  'OTHER',
                  'PMEM'
                ]
              },
              multipathState: {
                path: [
                  {
                    name: 'vmhba64:C0:T0:L0',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C0:T0:L100',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C0:T0:L11',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C0:T0:L12',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C0:T0:L13',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C0:T0:L14',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C0:T0:L20',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C1:T0:L0',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C1:T0:L100',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C1:T0:L11',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C1:T0:L12',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C1:T0:L13',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C1:T0:L14',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C1:T0:L20',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C2:T0:L0',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C2:T0:L100',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C2:T0:L11',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C2:T0:L12',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C2:T0:L13',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C2:T0:L14',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C2:T0:L20',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C3:T0:L0',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C3:T0:L100',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C3:T0:L11',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C3:T0:L12',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C3:T0:L13',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C3:T0:L14',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C3:T0:L20',
                    pathState: 'active'
                  }
                ]
              },
              network: {
                pnic: [
                  {
                    device: 'vmnic0',
                    key: 'key-vim.host.PhysicalNic-vmnic0',
                    linkSpeed: {
                      duplex: true,
                      speedMb: 20000
                    },
                    mac: '00:25:b5:01:a0:07'
                  },
                  {
                    device: 'vmnic1',
                    key: 'key-vim.host.PhysicalNic-vmnic1',
                    linkSpeed: {
                      duplex: true,
                      speedMb: 20000
                    },
                    mac: '00:25:b5:01:b0:07'
                  },
                  {
                    device: 'vmnic2',
                    key: 'key-vim.host.PhysicalNic-vmnic2',
                    linkSpeed: {
                      duplex: true,
                      speedMb: 20000
                    },
                    mac: '00:25:b5:01:a2:07'
                  },
                  {
                    device: 'vmnic3',
                    key: 'key-vim.host.PhysicalNic-vmnic3',
                    linkSpeed: {
                      duplex: true,
                      speedMb: 20000
                    },
                    mac: '00:25:b5:01:b3:07'
                  },
                  {
                    device: 'vmnic4',
                    key: 'key-vim.host.PhysicalNic-vmnic4',
                    linkSpeed: {
                      duplex: true,
                      speedMb: 20000
                    },
                    mac: '00:25:b5:01:a4:07'
                  },
                  {
                    device: 'vmnic5',
                    key: 'key-vim.host.PhysicalNic-vmnic5',
                    linkSpeed: {
                      duplex: true,
                      speedMb: 20000
                    },
                    mac: '00:25:b5:01:b5:07'
                  },
                  {
                    device: 'vmnic6',
                    key: 'key-vim.host.PhysicalNic-vmnic6',
                    linkSpeed: {
                      duplex: true,
                      speedMb: 20000
                    },
                    mac: '00:25:b5:01:a6:03'
                  },
                  {
                    device: 'vmnic7',
                    key: 'key-vim.host.PhysicalNic-vmnic7',
                    linkSpeed: {
                      duplex: true,
                      speedMb: 20000
                    },
                    mac: '00:25:b5:01:b7:03'
                  },
                  {
                    device: 'vmnic8',
                    key: 'key-vim.host.PhysicalNic-vmnic8',
                    linkSpeed: {
                      duplex: true,
                      speedMb: 20000
                    },
                    mac: '00:25:b5:01:a8:03'
                  },
                  {
                    device: 'vmnic9',
                    key: 'key-vim.host.PhysicalNic-vmnic9',
                    linkSpeed: {
                      duplex: true,
                      speedMb: 20000
                    },
                    mac: '00:25:b5:01:b9:03'
                  }
                ],
                portgroup: [
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic6',
                            'vmnic7'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-iScsiBootPG',
                    spec: {
                      name: 'iScsiBootPG',
                      vlanId: 0,
                      vswitchName: 'iScsiBootvSwitch'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-iScsiBootvSwitch'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic7'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-iSCSI-B',
                    spec: {
                      name: 'iSCSI-B',
                      vlanId: 0,
                      vswitchName: 'iScsiBootvSwitch'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-iScsiBootvSwitch'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic6'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-iSCSI-A',
                    spec: {
                      name: 'iSCSI-A',
                      vlanId: 0,
                      vswitchName: 'iScsiBootvSwitch'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-iScsiBootvSwitch'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic0',
                            'vmnic1'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-VM Network',
                    spec: {
                      name: 'VM Network',
                      vlanId: 0,
                      vswitchName: 'vSwitch0'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch0'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic0',
                            'vmnic1'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-LAN Stordata',
                    spec: {
                      name: 'LAN Stordata',
                      vlanId: 0,
                      vswitchName: 'vSwitch0'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch0'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic0'
                          ],
                          standbyNic: [
                            'vmnic1'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-Management Network',
                    spec: {
                      name: 'Management Network',
                      vlanId: 0,
                      vswitchName: 'vSwitch0'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch0'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic3'
                          ],
                          standbyNic: [
                            'vmnic2'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-vMotion-B',
                    spec: {
                      name: 'vMotion-B',
                      vlanId: 0,
                      vswitchName: 'vSwitch1'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch1'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic2'
                          ],
                          standbyNic: [
                            'vmnic3'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-vMotion-A',
                    spec: {
                      name: 'vMotion-A',
                      vlanId: 0,
                      vswitchName: 'vSwitch1'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch1'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-DMZ_CL-AG2R',
                    spec: {
                      name: 'DMZ_CL-AG2R',
                      vlanId: 162,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-LAN_FORMATION_137',
                    spec: {
                      name: 'LAN_FORMATION_137',
                      vlanId: 137,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-LAN_IOT_136',
                    spec: {
                      name: 'LAN_IOT_136',
                      vlanId: 136,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-LAN_PRINT_135',
                    spec: {
                      name: 'LAN_PRINT_135',
                      vlanId: 135,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-LAN_PSAVV_134',
                    spec: {
                      name: 'LAN_PSAVV_134',
                      vlanId: 134,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-LAN_SUPPORT_133',
                    spec: {
                      name: 'LAN_SUPPORT_133',
                      vlanId: 133,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-LAN_ADMCOM_132',
                    spec: {
                      name: 'LAN_ADMCOM_132',
                      vlanId: 132,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-LAN_IT_131',
                    spec: {
                      name: 'LAN_IT_131',
                      vlanId: 131,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-DMZ_CL-BYTEL',
                    spec: {
                      name: 'DMZ_CL-BYTEL',
                      vlanId: 161,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-DMZ_CSA_IVANTI',
                    spec: {
                      name: 'DMZ_CSA_IVANTI',
                      vlanId: 187,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-WIFI_MOBILE',
                    spec: {
                      name: 'WIFI_MOBILE',
                      vlanId: 122,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-NFS_Stornetapp',
                    spec: {
                      name: 'NFS_Stornetapp',
                      vlanId: 601,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-DMZ_IPSEC_CLD',
                    spec: {
                      name: 'DMZ_IPSEC_CLD',
                      vlanId: 160,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-LAN Prod',
                    spec: {
                      name: 'LAN Prod',
                      vlanId: 1000,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-PROD_Management',
                    spec: {
                      name: 'PROD_Management',
                      vlanId: 150,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  }
                ],
                vnic: [
                  {
                    device: 'vmk0',
                    key: 'key-vim.host.VirtualNic-vmk0',
                    port: 'key-vim.host.PortGroup.Port-100663328',
                    portgroup: 'Management Network'
                  },
                  {
                    device: 'vmk1',
                    key: 'key-vim.host.VirtualNic-vmk1',
                    port: 'key-vim.host.PortGroup.Port-67108897',
                    portgroup: 'iSCSI-A'
                  },
                  {
                    device: 'vmk2',
                    key: 'key-vim.host.VirtualNic-vmk2',
                    port: 'key-vim.host.PortGroup.Port-67108898',
                    portgroup: 'iSCSI-B'
                  },
                  {
                    device: 'vmk3',
                    key: 'key-vim.host.VirtualNic-vmk3',
                    port: 'key-vim.host.PortGroup.Port-134217763',
                    portgroup: 'vMotion-A'
                  },
                  {
                    device: 'vmk4',
                    key: 'key-vim.host.VirtualNic-vmk4',
                    port: 'key-vim.host.PortGroup.Port-134217764',
                    portgroup: 'vMotion-B'
                  }
                ]
              },
              storageDevice: {
                hostBusAdapter: [
                  {
                    bus: -1,
                    configuredStaticTarget: [
                      {
                        address: '192.168.51.2',
                        iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6',
                        parent: 'vmhba64',
                        port: 3260
                      },
                      {
                        address: '192.168.52.1',
                        iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6',
                        parent: 'vmhba64',
                        port: 3260
                      },
                      {
                        address: '192.168.52.2',
                        iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6',
                        parent: 'vmhba64',
                        port: 3260
                      },
                      {
                        address: '192.168.51.1',
                        iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6',
                        parent: 'vmhba64',
                        port: 3260
                      }
                    ],
                    device: 'vmhba64',
                    driver: 'iscsi_vmk',
                    iScsiAlias: '',
                    iScsiName: 'iqn.1987-05.com.cisco:esxi0:4',
                    isSoftwareBased: true,
                    key: 'key-vim.host.InternetScsiHba-vmhba64',
                    model: 'iSCSI Software Adapter',
                    pci: 'N/A',
                    status: 'online'
                  }
                ],
                multipathInfo: {
                  lun: [
                    {
                      id: '0200000000600a098038314647492452446a6c2f524c554e20432d',
                      key: 'key-vim.host.MultipathInfo.LogicalUnit-0200000000600a098038314647492452446a6c2f524c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-0200000000600a098038314647492452446a6c2f524c554e20432d',
                      path: [
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C0:T0:L0',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-0200000000600a098038314647492452446a6c2f524c554e20432d',
                          name: 'vmhba64:C0:T0:L0',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C3:T0:L0',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-0200000000600a098038314647492452446a6c2f524c554e20432d',
                          name: 'vmhba64:C3:T0:L0',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C2:T0:L0',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-0200000000600a098038314647492452446a6c2f524c554e20432d',
                          name: 'vmhba64:C2:T0:L0',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C1:T0:L0',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-0200000000600a098038314647492452446a6c2f524c554e20432d',
                          name: 'vmhba64:C1:T0:L0',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        }
                      ],
                      policy: {
                        policy: 'VMW_PSP_RR'
                      },
                      storageArrayTypePolicy: {
                        policy: 'VMW_SATP_ALUA'
                      }
                    },
                    {
                      id: '02000b0000600a098038314647492452446a6c2f614c554e20432d',
                      key: 'key-vim.host.MultipathInfo.LogicalUnit-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                      path: [
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C0:T0:L11',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                          name: 'vmhba64:C0:T0:L11',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C1:T0:L11',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                          name: 'vmhba64:C1:T0:L11',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C2:T0:L11',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                          name: 'vmhba64:C2:T0:L11',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C3:T0:L11',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                          name: 'vmhba64:C3:T0:L11',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        }
                      ],
                      policy: {
                        policy: 'VMW_PSP_RR'
                      },
                      storageArrayTypePolicy: {
                        policy: 'VMW_SATP_ALUA'
                      }
                    },
                    {
                      id: '02000c0000600a098038314647492452446a6c2f624c554e20432d',
                      key: 'key-vim.host.MultipathInfo.LogicalUnit-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                      path: [
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C0:T0:L12',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                          name: 'vmhba64:C0:T0:L12',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C1:T0:L12',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                          name: 'vmhba64:C1:T0:L12',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C2:T0:L12',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                          name: 'vmhba64:C2:T0:L12',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C3:T0:L12',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                          name: 'vmhba64:C3:T0:L12',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        }
                      ],
                      policy: {
                        policy: 'VMW_PSP_RR'
                      },
                      storageArrayTypePolicy: {
                        policy: 'VMW_SATP_ALUA'
                      }
                    },
                    {
                      id: '02000d0000600a098038314647492452446a6c2f634c554e20432d',
                      key: 'key-vim.host.MultipathInfo.LogicalUnit-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                      path: [
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C0:T0:L13',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                          name: 'vmhba64:C0:T0:L13',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C1:T0:L13',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                          name: 'vmhba64:C1:T0:L13',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C2:T0:L13',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                          name: 'vmhba64:C2:T0:L13',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C3:T0:L13',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                          name: 'vmhba64:C3:T0:L13',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        }
                      ],
                      policy: {
                        policy: 'VMW_PSP_RR'
                      },
                      storageArrayTypePolicy: {
                        policy: 'VMW_SATP_ALUA'
                      }
                    },
                    {
                      id: '02000e0000600a098038314647492452446a6c2f644c554e20432d',
                      key: 'key-vim.host.MultipathInfo.LogicalUnit-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                      path: [
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C0:T0:L14',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                          name: 'vmhba64:C0:T0:L14',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C1:T0:L14',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                          name: 'vmhba64:C1:T0:L14',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C2:T0:L14',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                          name: 'vmhba64:C2:T0:L14',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C3:T0:L14',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                          name: 'vmhba64:C3:T0:L14',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        }
                      ],
                      policy: {
                        policy: 'VMW_PSP_RR'
                      },
                      storageArrayTypePolicy: {
                        policy: 'VMW_SATP_ALUA'
                      }
                    },
                    {
                      id: '0200140000600a098038314647492452446a6c2f664c554e20432d',
                      key: 'key-vim.host.MultipathInfo.LogicalUnit-0200140000600a098038314647492452446a6c2f664c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-0200140000600a098038314647492452446a6c2f664c554e20432d',
                      path: [
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C0:T0:L20',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-0200140000600a098038314647492452446a6c2f664c554e20432d',
                          name: 'vmhba64:C0:T0:L20',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C1:T0:L20',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-0200140000600a098038314647492452446a6c2f664c554e20432d',
                          name: 'vmhba64:C1:T0:L20',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C2:T0:L20',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-0200140000600a098038314647492452446a6c2f664c554e20432d',
                          name: 'vmhba64:C2:T0:L20',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C3:T0:L20',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-0200140000600a098038314647492452446a6c2f664c554e20432d',
                          name: 'vmhba64:C3:T0:L20',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        }
                      ],
                      policy: {
                        policy: 'VMW_PSP_RR'
                      },
                      storageArrayTypePolicy: {
                        policy: 'VMW_SATP_ALUA'
                      }
                    },
                    {
                      id: '0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                      key: 'key-vim.host.MultipathInfo.LogicalUnit-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                      path: [
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C2:T0:L100',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                          name: 'vmhba64:C2:T0:L100',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C1:T0:L100',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                          name: 'vmhba64:C1:T0:L100',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C0:T0:L100',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                          name: 'vmhba64:C0:T0:L100',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C3:T0:L100',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                          name: 'vmhba64:C3:T0:L100',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        }
                      ],
                      policy: {
                        policy: 'VMW_PSP_RR'
                      },
                      storageArrayTypePolicy: {
                        policy: 'VMW_SATP_ALUA'
                      }
                    }
                  ]
                },
                plugStoreTopology: {
                  adapter: [
                    {
                      adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                      key: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      path: [
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L0',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L100',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L100',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L100',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L11',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L12',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L13',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L14',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L11',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L12',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L13',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L14',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L11',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L12',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L13',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L14',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L11',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L12',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L13',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L14',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L0',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L0',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L20',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L20',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L0',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L20',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L20',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L100'
                      ]
                    }
                  ],
                  device: [
                    {
                      key: 'key-vim.host.PlugStoreTopology.Device-0200000000600a098038314647492452446a6c2f524c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-0200000000600a098038314647492452446a6c2f524c554e20432d',
                      path: [
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L0',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L0',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L0',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L0'
                      ]
                    },
                    {
                      key: 'key-vim.host.PlugStoreTopology.Device-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                      path: [
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L11',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L11',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L11',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L11'
                      ]
                    },
                    {
                      key: 'key-vim.host.PlugStoreTopology.Device-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                      path: [
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L12',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L12',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L12',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L12'
                      ]
                    },
                    {
                      key: 'key-vim.host.PlugStoreTopology.Device-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                      path: [
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L13',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L13',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L13',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L13'
                      ]
                    },
                    {
                      key: 'key-vim.host.PlugStoreTopology.Device-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                      path: [
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L14',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L14',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L14',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L14'
                      ]
                    },
                    {
                      key: 'key-vim.host.PlugStoreTopology.Device-0200140000600a098038314647492452446a6c2f664c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-0200140000600a098038314647492452446a6c2f664c554e20432d',
                      path: [
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L20',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L20',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L20',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L20'
                      ]
                    },
                    {
                      key: 'key-vim.host.PlugStoreTopology.Device-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                      path: [
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L100',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L100',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L100',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L100'
                      ]
                    }
                  ],
                  path: [
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 0,
                      device: 'key-vim.host.PlugStoreTopology.Device-0200000000600a098038314647492452446a6c2f524c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L0',
                      lunNumber: 0,
                      name: 'vmhba64:C0:T0:L0',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1034',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 2,
                      device: 'key-vim.host.PlugStoreTopology.Device-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L100',
                      lunNumber: 100,
                      name: 'vmhba64:C2:T0:L100',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000015,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1035',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 1,
                      device: 'key-vim.host.PlugStoreTopology.Device-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L100',
                      lunNumber: 100,
                      name: 'vmhba64:C1:T0:L100',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000014,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1030',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 0,
                      device: 'key-vim.host.PlugStoreTopology.Device-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L100',
                      lunNumber: 100,
                      name: 'vmhba64:C0:T0:L100',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1034',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 0,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L11',
                      lunNumber: 11,
                      name: 'vmhba64:C0:T0:L11',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1034',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 0,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L12',
                      lunNumber: 12,
                      name: 'vmhba64:C0:T0:L12',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1034',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 0,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L13',
                      lunNumber: 13,
                      name: 'vmhba64:C0:T0:L13',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1034',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 0,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L14',
                      lunNumber: 14,
                      name: 'vmhba64:C0:T0:L14',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1034',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 1,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L11',
                      lunNumber: 11,
                      name: 'vmhba64:C1:T0:L11',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000014,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1030',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 1,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L12',
                      lunNumber: 12,
                      name: 'vmhba64:C1:T0:L12',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000014,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1030',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 1,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L13',
                      lunNumber: 13,
                      name: 'vmhba64:C1:T0:L13',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000014,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1030',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 1,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L14',
                      lunNumber: 14,
                      name: 'vmhba64:C1:T0:L14',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000014,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1030',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 2,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L11',
                      lunNumber: 11,
                      name: 'vmhba64:C2:T0:L11',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000015,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1035',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 2,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L12',
                      lunNumber: 12,
                      name: 'vmhba64:C2:T0:L12',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000015,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1035',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 2,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L13',
                      lunNumber: 13,
                      name: 'vmhba64:C2:T0:L13',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000015,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1035',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 2,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L14',
                      lunNumber: 14,
                      name: 'vmhba64:C2:T0:L14',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000015,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1035',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 3,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L11',
                      lunNumber: 11,
                      name: 'vmhba64:C3:T0:L11',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000016,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1032',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 3,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L12',
                      lunNumber: 12,
                      name: 'vmhba64:C3:T0:L12',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000016,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1032',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 3,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L13',
                      lunNumber: 13,
                      name: 'vmhba64:C3:T0:L13',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000016,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1032',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 3,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L14',
                      lunNumber: 14,
                      name: 'vmhba64:C3:T0:L14',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000016,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1032',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 3,
                      device: 'key-vim.host.PlugStoreTopology.Device-0200000000600a098038314647492452446a6c2f524c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L0',
                      lunNumber: 0,
                      name: 'vmhba64:C3:T0:L0',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000016,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1032',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 2,
                      device: 'key-vim.host.PlugStoreTopology.Device-0200000000600a098038314647492452446a6c2f524c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L0',
                      lunNumber: 0,
                      name: 'vmhba64:C2:T0:L0',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000015,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1035',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 0,
                      device: 'key-vim.host.PlugStoreTopology.Device-0200140000600a098038314647492452446a6c2f664c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L20',
                      lunNumber: 20,
                      name: 'vmhba64:C0:T0:L20',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1034',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 1,
                      device: 'key-vim.host.PlugStoreTopology.Device-0200140000600a098038314647492452446a6c2f664c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L20',
                      lunNumber: 20,
                      name: 'vmhba64:C1:T0:L20',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000014,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1030',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 1,
                      device: 'key-vim.host.PlugStoreTopology.Device-0200000000600a098038314647492452446a6c2f524c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L0',
                      lunNumber: 0,
                      name: 'vmhba64:C1:T0:L0',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000014,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1030',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 2,
                      device: 'key-vim.host.PlugStoreTopology.Device-0200140000600a098038314647492452446a6c2f664c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L20',
                      lunNumber: 20,
                      name: 'vmhba64:C2:T0:L20',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000015,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1035',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 3,
                      device: 'key-vim.host.PlugStoreTopology.Device-0200140000600a098038314647492452446a6c2f664c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L20',
                      lunNumber: 20,
                      name: 'vmhba64:C3:T0:L20',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000016,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1032',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 3,
                      device: 'key-vim.host.PlugStoreTopology.Device-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L100',
                      lunNumber: 100,
                      name: 'vmhba64:C3:T0:L100',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000016,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1032',
                      targetNumber: 0
                    }
                  ],
                  plugin: [
                    {
                      claimedPath: [
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L0',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L100',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L100',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L100',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L11',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L12',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L13',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L14',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L11',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L12',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L13',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L14',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L11',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L12',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L13',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L14',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L11',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L12',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L13',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L14',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L0',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L0',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L20',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L20',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L0',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L20',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L20',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L100'
                      ],
                      device: [
                        'key-vim.host.PlugStoreTopology.Device-0200000000600a098038314647492452446a6c2f524c554e20432d',
                        'key-vim.host.PlugStoreTopology.Device-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                        'key-vim.host.PlugStoreTopology.Device-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                        'key-vim.host.PlugStoreTopology.Device-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                        'key-vim.host.PlugStoreTopology.Device-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                        'key-vim.host.PlugStoreTopology.Device-0200140000600a098038314647492452446a6c2f664c554e20432d',
                        'key-vim.host.PlugStoreTopology.Device-0200640000600a098038314647492452446a6c2f2f4c554e20432d'
                      ],
                      key: 'key-vim.host.PlugStoreTopology.Plugin-NMP',
                      name: 'NMP'
                    }
                  ],
                  target: [
                    {
                      key: 'key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1034',
                      transport: {
                        address: [
                          '192.168.51.2:3260'
                        ],
                        classes: [
                          'HostInternetScsiTargetTransport',
                          'HostTargetTransport'
                        ],
                        iScsiAlias: '',
                        iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                      }
                    },
                    {
                      key: 'key-vim.host.PlugStoreTopology.Target-00023d000015,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1035',
                      transport: {
                        address: [
                          '192.168.52.2:3260'
                        ],
                        classes: [
                          'HostInternetScsiTargetTransport',
                          'HostTargetTransport'
                        ],
                        iScsiAlias: '',
                        iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                      }
                    },
                    {
                      key: 'key-vim.host.PlugStoreTopology.Target-00023d000014,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1030',
                      transport: {
                        address: [
                          '192.168.52.1:3260'
                        ],
                        classes: [
                          'HostInternetScsiTargetTransport',
                          'HostTargetTransport'
                        ],
                        iScsiAlias: '',
                        iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                      }
                    },
                    {
                      key: 'key-vim.host.PlugStoreTopology.Target-00023d000016,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1032',
                      transport: {
                        address: [
                          '192.168.51.1:3260'
                        ],
                        classes: [
                          'HostInternetScsiTargetTransport',
                          'HostTargetTransport'
                        ],
                        iScsiAlias: '',
                        iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                      }
                    }
                  ]
                },
                scsiLun: [
                  {
                    alternateName: [
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'SERIALNUM',
                        namespaceId: 4
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'NAA',
                        namespaceId: 3
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      }
                    ],
                    canonicalName: 'naa.600a098038314647492452446a6c2f52',
                    capabilities: {
                      updateDisplayNameSupported: true
                    },
                    descriptor: [
                      {
                        id: 'naa.600a098038314647492452446a6c2f52',
                        quality: 'highQuality'
                      },
                      {
                        id: 'vml.0200000000600a098038314647492452446a6c2f524c554e20432d',
                        quality: 'mediumQuality'
                      },
                      {
                        id: '0200000000600a098038314647492452446a6c2f524c554e20432d',
                        quality: 'mediumQuality'
                      }
                    ],
                    deviceName: '/vmfs/devices/disks/naa.600a098038314647492452446a6c2f52',
                    deviceType: 'disk',
                    displayName: 'NETAPP iSCSI Disk (naa.600a098038314647492452446a6c2f52)',
                    durableName: {
                      namespace: 'NAA',
                      namespaceId: 3
                    },
                    key: 'key-vim.host.ScsiDisk-0200000000600a098038314647492452446a6c2f524c554e20432d',
                    lunType: 'disk',
                    model: 'LUN C-Mode',
                    operationalState: [
                      'ok'
                    ],
                    queueDepth: 128,
                    revision: '9131',
                    scsiLevel: 6,
                    serialNumber: 'unavailable',
                    uuid: '0200000000600a098038314647492452446a6c2f524c554e20432d',
                    vStorageSupport: 'vStorageSupported',
                    vendor: 'NETAPP'
                  },
                  {
                    alternateName: [
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'SERIALNUM',
                        namespaceId: 4
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'NAA',
                        namespaceId: 3
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      }
                    ],
                    canonicalName: 'naa.600a098038314647492452446a6c2f61',
                    capabilities: {
                      updateDisplayNameSupported: true
                    },
                    descriptor: [
                      {
                        id: 'naa.600a098038314647492452446a6c2f61',
                        quality: 'highQuality'
                      },
                      {
                        id: 'vml.02000b0000600a098038314647492452446a6c2f614c554e20432d',
                        quality: 'mediumQuality'
                      },
                      {
                        id: '02000b0000600a098038314647492452446a6c2f614c554e20432d',
                        quality: 'mediumQuality'
                      }
                    ],
                    deviceName: '/vmfs/devices/disks/naa.600a098038314647492452446a6c2f61',
                    deviceType: 'disk',
                    displayName: 'NETAPP iSCSI Disk (naa.600a098038314647492452446a6c2f61)',
                    durableName: {
                      namespace: 'NAA',
                      namespaceId: 3
                    },
                    key: 'key-vim.host.ScsiDisk-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                    lunType: 'disk',
                    model: 'LUN C-Mode',
                    operationalState: [
                      'ok'
                    ],
                    queueDepth: 128,
                    revision: '9131',
                    scsiLevel: 6,
                    serialNumber: 'unavailable',
                    uuid: '02000b0000600a098038314647492452446a6c2f614c554e20432d',
                    vStorageSupport: 'vStorageSupported',
                    vendor: 'NETAPP'
                  },
                  {
                    alternateName: [
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'SERIALNUM',
                        namespaceId: 4
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'NAA',
                        namespaceId: 3
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      }
                    ],
                    canonicalName: 'naa.600a098038314647492452446a6c2f62',
                    capabilities: {
                      updateDisplayNameSupported: true
                    },
                    descriptor: [
                      {
                        id: 'naa.600a098038314647492452446a6c2f62',
                        quality: 'highQuality'
                      },
                      {
                        id: 'vml.02000c0000600a098038314647492452446a6c2f624c554e20432d',
                        quality: 'mediumQuality'
                      },
                      {
                        id: '02000c0000600a098038314647492452446a6c2f624c554e20432d',
                        quality: 'mediumQuality'
                      }
                    ],
                    deviceName: '/vmfs/devices/disks/naa.600a098038314647492452446a6c2f62',
                    deviceType: 'disk',
                    displayName: 'NETAPP iSCSI Disk (naa.600a098038314647492452446a6c2f62)',
                    durableName: {
                      namespace: 'NAA',
                      namespaceId: 3
                    },
                    key: 'key-vim.host.ScsiDisk-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                    lunType: 'disk',
                    model: 'LUN C-Mode',
                    operationalState: [
                      'ok'
                    ],
                    queueDepth: 128,
                    revision: '9131',
                    scsiLevel: 6,
                    serialNumber: 'unavailable',
                    uuid: '02000c0000600a098038314647492452446a6c2f624c554e20432d',
                    vStorageSupport: 'vStorageSupported',
                    vendor: 'NETAPP'
                  },
                  {
                    alternateName: [
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'SERIALNUM',
                        namespaceId: 4
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'NAA',
                        namespaceId: 3
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      }
                    ],
                    canonicalName: 'naa.600a098038314647492452446a6c2f63',
                    capabilities: {
                      updateDisplayNameSupported: true
                    },
                    descriptor: [
                      {
                        id: 'naa.600a098038314647492452446a6c2f63',
                        quality: 'highQuality'
                      },
                      {
                        id: 'vml.02000d0000600a098038314647492452446a6c2f634c554e20432d',
                        quality: 'mediumQuality'
                      },
                      {
                        id: '02000d0000600a098038314647492452446a6c2f634c554e20432d',
                        quality: 'mediumQuality'
                      }
                    ],
                    deviceName: '/vmfs/devices/disks/naa.600a098038314647492452446a6c2f63',
                    deviceType: 'disk',
                    displayName: 'NETAPP iSCSI Disk (naa.600a098038314647492452446a6c2f63)',
                    durableName: {
                      namespace: 'NAA',
                      namespaceId: 3
                    },
                    key: 'key-vim.host.ScsiDisk-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                    lunType: 'disk',
                    model: 'LUN C-Mode',
                    operationalState: [
                      'ok'
                    ],
                    queueDepth: 128,
                    revision: '9131',
                    scsiLevel: 6,
                    serialNumber: 'unavailable',
                    uuid: '02000d0000600a098038314647492452446a6c2f634c554e20432d',
                    vStorageSupport: 'vStorageSupported',
                    vendor: 'NETAPP'
                  },
                  {
                    alternateName: [
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'SERIALNUM',
                        namespaceId: 4
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'NAA',
                        namespaceId: 3
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      }
                    ],
                    canonicalName: 'naa.600a098038314647492452446a6c2f64',
                    capabilities: {
                      updateDisplayNameSupported: true
                    },
                    descriptor: [
                      {
                        id: 'naa.600a098038314647492452446a6c2f64',
                        quality: 'highQuality'
                      },
                      {
                        id: 'vml.02000e0000600a098038314647492452446a6c2f644c554e20432d',
                        quality: 'mediumQuality'
                      },
                      {
                        id: '02000e0000600a098038314647492452446a6c2f644c554e20432d',
                        quality: 'mediumQuality'
                      }
                    ],
                    deviceName: '/vmfs/devices/disks/naa.600a098038314647492452446a6c2f64',
                    deviceType: 'disk',
                    displayName: 'NETAPP iSCSI Disk (naa.600a098038314647492452446a6c2f64)',
                    durableName: {
                      namespace: 'NAA',
                      namespaceId: 3
                    },
                    key: 'key-vim.host.ScsiDisk-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                    lunType: 'disk',
                    model: 'LUN C-Mode',
                    operationalState: [
                      'ok'
                    ],
                    queueDepth: 128,
                    revision: '9131',
                    scsiLevel: 6,
                    serialNumber: 'unavailable',
                    uuid: '02000e0000600a098038314647492452446a6c2f644c554e20432d',
                    vStorageSupport: 'vStorageSupported',
                    vendor: 'NETAPP'
                  },
                  {
                    alternateName: [
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'SERIALNUM',
                        namespaceId: 4
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'NAA',
                        namespaceId: 3
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      }
                    ],
                    canonicalName: 'naa.600a098038314647492452446a6c2f66',
                    capabilities: {
                      updateDisplayNameSupported: true
                    },
                    descriptor: [
                      {
                        id: 'naa.600a098038314647492452446a6c2f66',
                        quality: 'highQuality'
                      },
                      {
                        id: 'vml.0200140000600a098038314647492452446a6c2f664c554e20432d',
                        quality: 'mediumQuality'
                      },
                      {
                        id: '0200140000600a098038314647492452446a6c2f664c554e20432d',
                        quality: 'mediumQuality'
                      }
                    ],
                    deviceName: '/vmfs/devices/disks/naa.600a098038314647492452446a6c2f66',
                    deviceType: 'disk',
                    displayName: 'NETAPP iSCSI Disk (naa.600a098038314647492452446a6c2f66)',
                    durableName: {
                      namespace: 'NAA',
                      namespaceId: 3
                    },
                    key: 'key-vim.host.ScsiDisk-0200140000600a098038314647492452446a6c2f664c554e20432d',
                    lunType: 'disk',
                    model: 'LUN C-Mode',
                    operationalState: [
                      'ok'
                    ],
                    queueDepth: 128,
                    revision: '9131',
                    scsiLevel: 6,
                    serialNumber: 'unavailable',
                    uuid: '0200140000600a098038314647492452446a6c2f664c554e20432d',
                    vStorageSupport: 'vStorageSupported',
                    vendor: 'NETAPP'
                  },
                  {
                    alternateName: [
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'SERIALNUM',
                        namespaceId: 4
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'NAA',
                        namespaceId: 3
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      }
                    ],
                    canonicalName: 'naa.600a098038314647492452446a6c2f2f',
                    capabilities: {
                      updateDisplayNameSupported: true
                    },
                    descriptor: [
                      {
                        id: 'naa.600a098038314647492452446a6c2f2f',
                        quality: 'highQuality'
                      },
                      {
                        id: 'vml.0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                        quality: 'mediumQuality'
                      },
                      {
                        id: '0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                        quality: 'mediumQuality'
                      }
                    ],
                    deviceName: '/vmfs/devices/disks/naa.600a098038314647492452446a6c2f2f',
                    deviceType: 'disk',
                    displayName: 'NETAPP iSCSI Disk (naa.600a098038314647492452446a6c2f2f)',
                    durableName: {
                      namespace: 'NAA',
                      namespaceId: 3
                    },
                    key: 'key-vim.host.ScsiDisk-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                    lunType: 'disk',
                    model: 'LUN C-Mode',
                    operationalState: [
                      'ok'
                    ],
                    queueDepth: 128,
                    revision: '9131',
                    scsiLevel: 6,
                    serialNumber: 'unavailable',
                    uuid: '0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                    vStorageSupport: 'vStorageSupported',
                    vendor: 'NETAPP'
                  }
                ],
                scsiTopology: {
                  adapter: [
                    {
                      adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                      key: 'key-vim.host.ScsiTopology.Interface-vmhba64',
                      target: [
                        {
                          key: 'key-vim.host.ScsiTopology.Target-vmhba64:0:0',
                          lun: [
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-0200000000600a098038314647492452446a6c2f524c554e20432d',
                              lun: 0,
                              scsiLun: 'key-vim.host.ScsiDisk-0200000000600a098038314647492452446a6c2f524c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                              lun: 11,
                              scsiLun: 'key-vim.host.ScsiDisk-02000b0000600a098038314647492452446a6c2f614c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                              lun: 12,
                              scsiLun: 'key-vim.host.ScsiDisk-02000c0000600a098038314647492452446a6c2f624c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                              lun: 13,
                              scsiLun: 'key-vim.host.ScsiDisk-02000d0000600a098038314647492452446a6c2f634c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                              lun: 14,
                              scsiLun: 'key-vim.host.ScsiDisk-02000e0000600a098038314647492452446a6c2f644c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-0200140000600a098038314647492452446a6c2f664c554e20432d',
                              lun: 20,
                              scsiLun: 'key-vim.host.ScsiDisk-0200140000600a098038314647492452446a6c2f664c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                              lun: 100,
                              scsiLun: 'key-vim.host.ScsiDisk-0200640000600a098038314647492452446a6c2f2f4c554e20432d'
                            }
                          ],
                          target: 0,
                          transport: {
                            address: [
                              '192.168.51.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          key: 'key-vim.host.ScsiTopology.Target-vmhba64:2:0',
                          lun: [
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-0200000000600a098038314647492452446a6c2f524c554e20432d',
                              lun: 0,
                              scsiLun: 'key-vim.host.ScsiDisk-0200000000600a098038314647492452446a6c2f524c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                              lun: 11,
                              scsiLun: 'key-vim.host.ScsiDisk-02000b0000600a098038314647492452446a6c2f614c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                              lun: 12,
                              scsiLun: 'key-vim.host.ScsiDisk-02000c0000600a098038314647492452446a6c2f624c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                              lun: 13,
                              scsiLun: 'key-vim.host.ScsiDisk-02000d0000600a098038314647492452446a6c2f634c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                              lun: 14,
                              scsiLun: 'key-vim.host.ScsiDisk-02000e0000600a098038314647492452446a6c2f644c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-0200140000600a098038314647492452446a6c2f664c554e20432d',
                              lun: 20,
                              scsiLun: 'key-vim.host.ScsiDisk-0200140000600a098038314647492452446a6c2f664c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                              lun: 100,
                              scsiLun: 'key-vim.host.ScsiDisk-0200640000600a098038314647492452446a6c2f2f4c554e20432d'
                            }
                          ],
                          target: 0,
                          transport: {
                            address: [
                              '192.168.52.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          key: 'key-vim.host.ScsiTopology.Target-vmhba64:1:0',
                          lun: [
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-0200000000600a098038314647492452446a6c2f524c554e20432d',
                              lun: 0,
                              scsiLun: 'key-vim.host.ScsiDisk-0200000000600a098038314647492452446a6c2f524c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                              lun: 11,
                              scsiLun: 'key-vim.host.ScsiDisk-02000b0000600a098038314647492452446a6c2f614c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                              lun: 12,
                              scsiLun: 'key-vim.host.ScsiDisk-02000c0000600a098038314647492452446a6c2f624c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                              lun: 13,
                              scsiLun: 'key-vim.host.ScsiDisk-02000d0000600a098038314647492452446a6c2f634c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                              lun: 14,
                              scsiLun: 'key-vim.host.ScsiDisk-02000e0000600a098038314647492452446a6c2f644c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-0200140000600a098038314647492452446a6c2f664c554e20432d',
                              lun: 20,
                              scsiLun: 'key-vim.host.ScsiDisk-0200140000600a098038314647492452446a6c2f664c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                              lun: 100,
                              scsiLun: 'key-vim.host.ScsiDisk-0200640000600a098038314647492452446a6c2f2f4c554e20432d'
                            }
                          ],
                          target: 0,
                          transport: {
                            address: [
                              '192.168.52.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          key: 'key-vim.host.ScsiTopology.Target-vmhba64:3:0',
                          lun: [
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-0200000000600a098038314647492452446a6c2f524c554e20432d',
                              lun: 0,
                              scsiLun: 'key-vim.host.ScsiDisk-0200000000600a098038314647492452446a6c2f524c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                              lun: 11,
                              scsiLun: 'key-vim.host.ScsiDisk-02000b0000600a098038314647492452446a6c2f614c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                              lun: 12,
                              scsiLun: 'key-vim.host.ScsiDisk-02000c0000600a098038314647492452446a6c2f624c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                              lun: 13,
                              scsiLun: 'key-vim.host.ScsiDisk-02000d0000600a098038314647492452446a6c2f634c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                              lun: 14,
                              scsiLun: 'key-vim.host.ScsiDisk-02000e0000600a098038314647492452446a6c2f644c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-0200140000600a098038314647492452446a6c2f664c554e20432d',
                              lun: 20,
                              scsiLun: 'key-vim.host.ScsiDisk-0200140000600a098038314647492452446a6c2f664c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                              lun: 100,
                              scsiLun: 'key-vim.host.ScsiDisk-0200640000600a098038314647492452446a6c2f2f4c554e20432d'
                            }
                          ],
                          target: 0,
                          transport: {
                            address: [
                              '192.168.51.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        }
                      ]
                    }
                  ]
                },
                softwareInternetScsiEnabled: true
              },
              wakeOnLanCapable: false
            },
            configStatus: 'green',
            datastore: [
              {
                ref: 'datastore-72'
              },
              {
                ref: 'datastore-78'
              },
              {
                ref: 'datastore-80'
              },
              {
                ref: 'datastore-81'
              },
              {
                ref: 'datastore-82'
              },
              {
                ref: 'datastore-85'
              },
              {
                ref: 'datastore-86'
              },
              {
                ref: 'datastore-1004'
              }
            ],
            hardware: {
              smcPresent: false
            },
            licensableResource: {
              resource: {
                numCpuCores: 20,
                numCpuPackages: 2,
                numVmsStarted: 0
              }
            },
            name: 'stor-pro-esxi04.stordata.net',
            overallStatus: 'green',
            parent: {
              ref: 'domain-c8'
            },
            ref: 'host-85552',
            runtime: {
              bootTime: new Date('2024-12-19T09:22:01.528Z'),
              connectionState: 'connected',
              dasHostState: {
                state: 'connectedToMaster'
              },
              inMaintenanceMode: false,
              powerState: 'poweredOn',
              standbyMode: 'none'
            },
            summary: {
              config: {
                faultToleranceEnabled: false,
                port: 443,
                product: {
                  apiType: 'HostAgent',
                  apiVersion: '8.0.3.0',
                  build: '24280767',
                  fullName: 'VMware ESXi 8.0.3 build-24280767',
                  licenseProductName: 'VMware ESX Server',
                  licenseProductVersion: '8.0',
                  localeBuild: '000',
                  localeVersion: 'INTL',
                  name: 'VMware ESXi',
                  osType: 'vmnix-x86',
                  productLineId: 'embeddedEsx',
                  vendor: 'VMware, Inc.',
                  version: '8.0.3'
                },
                vmotionEnabled: true
              },
              currentEVCModeKey: 'intel-haswell',
              hardware: {
                cpuMhz: 2594,
                cpuModel: 'Intel(R) Xeon(R) CPU E5-2660 v3 @ 2.60GHz',
                memorySize: 274738421760,
                model: 'UCSB-B200-M4',
                numCpuCores: 20,
                numCpuPkgs: 2,
                numCpuThreads: 40,
                numHBAs: 1,
                numNics: 10,
                uuid: '600b96c8-ea07-e211-1000-00000000005f',
                vendor: 'Cisco Systems Inc'
              },
              managementServerIp: '10.10.1.150',
              maxEVCModeKey: 'intel-haswell',
              overallStatus: 'green',
              quickStats: {
                distributedCpuFairness: 10000,
                distributedMemoryFairness: 10000,
                overallCpuUsage: 130,
                overallMemoryUsage: 3832,
                uptime: 6668933
              },
              rebootRequired: false
            },
            triggeredAlarmState: []
          },
          {
            alarmActionsEnabled: true,
            config: {
              fileSystemVolume: {
                mountInfo: [
                  {
                    mountInfo: {
                      accessMode: 'readWrite',
                      accessible: true,
                      mounted: true,
                      path: '/vmfs/volumes/60e41bdf-d3b09ff8-548d-0025b501a004'
                    },
                    vStorageSupport: 'vStorageSupported',
                    volume: {
                      blockSizeMb: 1,
                      capacity: 107105746944,
                      extent: [
                        {
                          diskName: 'naa.600a098038314647492452446a6c2f2f',
                          partition: 1
                        }
                      ],
                      local: false,
                      majorVersion: 6,
                      maxBlocks: 63963136,
                      name: 'STOR-PRO-DSLOGS',
                      ssd: true,
                      type: 'VMFS',
                      unmapGranularity: 1024,
                      unmapPriority: 'low',
                      uuid: '60e41bdf-d3b09ff8-548d-0025b501a004',
                      version: '6.82',
                      vmfsUpgradable: false
                    }
                  },
                  {
                    mountInfo: {
                      accessMode: 'readWrite',
                      accessible: true,
                      mounted: true,
                      path: '/vmfs/volumes/60e45926-8dbddbe6-ccd9-0025b501a004'
                    },
                    vStorageSupport: 'vStorageSupported',
                    volume: {
                      blockSizeMb: 1,
                      capacity: 4397778075648,
                      extent: [
                        {
                          diskName: 'naa.600a098038314647492452446a6c2f61',
                          partition: 1
                        }
                      ],
                      local: false,
                      majorVersion: 6,
                      maxBlocks: 63963136,
                      name: 'STOR-PRO-DS01',
                      ssd: true,
                      type: 'VMFS',
                      unmapGranularity: 1024,
                      unmapPriority: 'low',
                      uuid: '60e45926-8dbddbe6-ccd9-0025b501a004',
                      version: '6.82',
                      vmfsUpgradable: false
                    }
                  },
                  {
                    mountInfo: {
                      accessMode: 'readWrite',
                      accessible: true,
                      mounted: true,
                      path: '/vmfs/volumes/60e45994-249a53e0-ab06-0025b501a004'
                    },
                    vStorageSupport: 'vStorageSupported',
                    volume: {
                      blockSizeMb: 1,
                      capacity: 4397778075648,
                      extent: [
                        {
                          diskName: 'naa.600a098038314647492452446a6c2f63',
                          partition: 1
                        }
                      ],
                      local: false,
                      majorVersion: 6,
                      maxBlocks: 63963136,
                      name: 'STOR-PRO-DS03',
                      ssd: true,
                      type: 'VMFS',
                      unmapGranularity: 1024,
                      unmapPriority: 'low',
                      uuid: '60e45994-249a53e0-ab06-0025b501a004',
                      version: '6.82',
                      vmfsUpgradable: false
                    }
                  },
                  {
                    mountInfo: {
                      accessMode: 'readWrite',
                      accessible: true,
                      mounted: true,
                      path: '/vmfs/volumes/60e459e8-d65928b2-f82b-0025b501a004'
                    },
                    vStorageSupport: 'vStorageSupported',
                    volume: {
                      blockSizeMb: 1,
                      capacity: 4397778075648,
                      extent: [
                        {
                          diskName: 'naa.600a098038314647492452446a6c2f64',
                          partition: 1
                        }
                      ],
                      local: false,
                      majorVersion: 6,
                      maxBlocks: 63963136,
                      name: 'STOR-PRO-DS04',
                      ssd: true,
                      type: 'VMFS',
                      unmapGranularity: 1024,
                      unmapPriority: 'low',
                      uuid: '60e459e8-d65928b2-f82b-0025b501a004',
                      version: '6.82',
                      vmfsUpgradable: false
                    }
                  },
                  {
                    mountInfo: {
                      accessMode: 'readWrite',
                      accessible: true,
                      mounted: true,
                      path: '/vmfs/volumes/60e459fe-71c9c5fa-c12d-0025b501a004'
                    },
                    vStorageSupport: 'vStorageSupported',
                    volume: {
                      blockSizeMb: 1,
                      capacity: 4397778075648,
                      extent: [
                        {
                          diskName: 'naa.600a098038314647492452446a6c2f62',
                          partition: 1
                        }
                      ],
                      local: false,
                      majorVersion: 6,
                      maxBlocks: 63963136,
                      name: 'STOR-PRO-DS02',
                      ssd: true,
                      type: 'VMFS',
                      unmapGranularity: 1024,
                      unmapPriority: 'low',
                      uuid: '60e459fe-71c9c5fa-c12d-0025b501a004',
                      version: '6.82',
                      vmfsUpgradable: false
                    }
                  },
                  {
                    mountInfo: {
                      accessMode: 'readWrite',
                      accessible: true,
                      mounted: true,
                      path: '/vmfs/volumes/6140d672-1ddbe2ac-bc17-0025b501a005'
                    },
                    vStorageSupport: 'vStorageSupported',
                    volume: {
                      blockSizeMb: 1,
                      capacity: 1610344300544,
                      extent: [
                        {
                          diskName: 'naa.600a098038314647492452446a6c2f66',
                          partition: 1
                        }
                      ],
                      local: false,
                      majorVersion: 6,
                      maxBlocks: 63963136,
                      name: 'STOR-PRO-DSSSD',
                      ssd: true,
                      type: 'VMFS',
                      unmapGranularity: 1024,
                      unmapPriority: 'low',
                      uuid: '6140d672-1ddbe2ac-bc17-0025b501a005',
                      version: '6.82',
                      vmfsUpgradable: false
                    }
                  },
                  {
                    mountInfo: {
                      accessMode: 'readWrite',
                      accessible: true,
                      mounted: true,
                      path: '/vmfs/volumes/60bf7903-4db70ec4-d810-0025b501a006'
                    },
                    vStorageSupport: 'vStorageSupported',
                    volume: {
                      blockSizeMb: 1,
                      capacity: 4026531840,
                      extent: [
                        {
                          diskName: 'naa.600a098038314647492452446a6c2f51',
                          partition: 7
                        }
                      ],
                      local: false,
                      majorVersion: 6,
                      maxBlocks: 63963136,
                      name: 'OSDATA-60bf7903-4db70ec4-d810-0025b501a006',
                      ssd: true,
                      type: 'OTHER',
                      unmapGranularity: 1024,
                      unmapPriority: 'low',
                      uuid: '60bf7903-4db70ec4-d810-0025b501a006',
                      version: '6.82',
                      vmfsUpgradable: false
                    }
                  },
                  {
                    mountInfo: {
                      accessMode: 'readWrite',
                      accessible: true,
                      mounted: true,
                      path: '/vmfs/volumes/d090baf9-62dcfd73'
                    },
                    vStorageSupport: 'vStorageUnsupported',
                    volume: {
                      capacity: 1044536049664,
                      name: 'STOR_PRO_DS_ISO',
                      remoteHost: '10.10.1.186',
                      remotePath: '/STOR_PRO_DS_ISO',
                      type: 'NFS'
                    }
                  },
                  {
                    mountInfo: {
                      accessMode: 'readWrite',
                      accessible: true,
                      mounted: true,
                      path: '/vmfs/volumes/8750440e-a3f9ffdc'
                    },
                    vStorageSupport: 'vStorageUnsupported',
                    volume: {
                      capacity: 3133608140800,
                      name: 'Datastore_Migration',
                      remoteHost: '10.10.1.186',
                      remotePath: '/STOR_PRO_DSNFS',
                      type: 'NFS'
                    }
                  },
                  {
                    mountInfo: {
                      accessMode: 'readOnly',
                      accessible: true,
                      mounted: true,
                      path: '/vmfs/volumes/18a9ff2e-6a4fc63d-3e8d-136731f9ec76'
                    },
                    volume: {
                      capacity: 524009472,
                      name: 'BOOTBANK1',
                      type: 'OTHER'
                    }
                  },
                  {
                    mountInfo: {
                      accessMode: 'readOnly',
                      accessible: true,
                      mounted: true,
                      path: '/vmfs/volumes/ae0d9b8a-9a4defca-5197-5763280b1013'
                    },
                    volume: {
                      capacity: 524009472,
                      name: 'BOOTBANK2',
                      type: 'OTHER'
                    }
                  }
                ],
                volumeTypeList: [
                  'VMFS',
                  'NFS',
                  'NFS41',
                  'vsan',
                  'VVOL',
                  'VFFS',
                  'OTHER',
                  'PMEM'
                ]
              },
              multipathState: {
                path: [
                  {
                    name: 'vmhba64:C0:T0:L0',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C0:T0:L100',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C0:T0:L11',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C0:T0:L12',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C0:T0:L13',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C0:T0:L14',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C0:T0:L20',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C1:T0:L0',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C1:T0:L100',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C1:T0:L11',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C1:T0:L12',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C1:T0:L13',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C1:T0:L14',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C1:T0:L20',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C2:T0:L0',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C2:T0:L100',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C2:T0:L11',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C2:T0:L12',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C2:T0:L13',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C2:T0:L14',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C2:T0:L20',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C3:T0:L0',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C3:T0:L100',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C3:T0:L11',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C3:T0:L12',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C3:T0:L13',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C3:T0:L14',
                    pathState: 'active'
                  },
                  {
                    name: 'vmhba64:C3:T0:L20',
                    pathState: 'active'
                  }
                ]
              },
              network: {
                pnic: [
                  {
                    device: 'vmnic0',
                    key: 'key-vim.host.PhysicalNic-vmnic0',
                    linkSpeed: {
                      duplex: true,
                      speedMb: 20000
                    },
                    mac: '00:25:b5:01:a0:06'
                  },
                  {
                    device: 'vmnic1',
                    key: 'key-vim.host.PhysicalNic-vmnic1',
                    linkSpeed: {
                      duplex: true,
                      speedMb: 20000
                    },
                    mac: '00:25:b5:01:b0:06'
                  },
                  {
                    device: 'vmnic2',
                    key: 'key-vim.host.PhysicalNic-vmnic2',
                    linkSpeed: {
                      duplex: true,
                      speedMb: 20000
                    },
                    mac: '00:25:b5:01:a2:06'
                  },
                  {
                    device: 'vmnic3',
                    key: 'key-vim.host.PhysicalNic-vmnic3',
                    linkSpeed: {
                      duplex: true,
                      speedMb: 20000
                    },
                    mac: '00:25:b5:01:b3:06'
                  },
                  {
                    device: 'vmnic4',
                    key: 'key-vim.host.PhysicalNic-vmnic4',
                    linkSpeed: {
                      duplex: true,
                      speedMb: 20000
                    },
                    mac: '00:25:b5:01:a4:06'
                  },
                  {
                    device: 'vmnic5',
                    key: 'key-vim.host.PhysicalNic-vmnic5',
                    linkSpeed: {
                      duplex: true,
                      speedMb: 20000
                    },
                    mac: '00:25:b5:01:b5:06'
                  },
                  {
                    device: 'vmnic6',
                    key: 'key-vim.host.PhysicalNic-vmnic6',
                    linkSpeed: {
                      duplex: true,
                      speedMb: 20000
                    },
                    mac: '00:25:b5:01:a6:02'
                  },
                  {
                    device: 'vmnic7',
                    key: 'key-vim.host.PhysicalNic-vmnic7',
                    linkSpeed: {
                      duplex: true,
                      speedMb: 20000
                    },
                    mac: '00:25:b5:01:b7:02'
                  },
                  {
                    device: 'vmnic8',
                    key: 'key-vim.host.PhysicalNic-vmnic8',
                    linkSpeed: {
                      duplex: true,
                      speedMb: 20000
                    },
                    mac: '00:25:b5:01:a8:02'
                  },
                  {
                    device: 'vmnic9',
                    key: 'key-vim.host.PhysicalNic-vmnic9',
                    linkSpeed: {
                      duplex: true,
                      speedMb: 20000
                    },
                    mac: '00:25:b5:01:b9:02'
                  }
                ],
                portgroup: [
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic6',
                            'vmnic7'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-iScsiBootPG',
                    spec: {
                      name: 'iScsiBootPG',
                      vlanId: 0,
                      vswitchName: 'iScsiBootvSwitch'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-iScsiBootvSwitch'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic7'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-iSCSI-B',
                    spec: {
                      name: 'iSCSI-B',
                      vlanId: 0,
                      vswitchName: 'iScsiBootvSwitch'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-iScsiBootvSwitch'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic6'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-iSCSI-A',
                    spec: {
                      name: 'iSCSI-A',
                      vlanId: 0,
                      vswitchName: 'iScsiBootvSwitch'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-iScsiBootvSwitch'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic0',
                            'vmnic1'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-VM Network',
                    spec: {
                      name: 'VM Network',
                      vlanId: 0,
                      vswitchName: 'vSwitch0'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch0'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic0',
                            'vmnic1'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-LAN Stordata',
                    spec: {
                      name: 'LAN Stordata',
                      vlanId: 0,
                      vswitchName: 'vSwitch0'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch0'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic0'
                          ],
                          standbyNic: [
                            'vmnic1'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-Management Network',
                    spec: {
                      name: 'Management Network',
                      vlanId: 0,
                      vswitchName: 'vSwitch0'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch0'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic3'
                          ],
                          standbyNic: [
                            'vmnic2'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-vMotion-B',
                    spec: {
                      name: 'vMotion-B',
                      vlanId: 0,
                      vswitchName: 'vSwitch1'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch1'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic2'
                          ],
                          standbyNic: [
                            'vmnic3'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-vMotion-A',
                    spec: {
                      name: 'vMotion-A',
                      vlanId: 0,
                      vswitchName: 'vSwitch1'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch1'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-DMZ_CL-AG2R',
                    spec: {
                      name: 'DMZ_CL-AG2R',
                      vlanId: 162,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-LAN_FORMATION_137',
                    spec: {
                      name: 'LAN_FORMATION_137',
                      vlanId: 137,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-LAN_IOT_136',
                    spec: {
                      name: 'LAN_IOT_136',
                      vlanId: 136,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-LAN_PRINT_135',
                    spec: {
                      name: 'LAN_PRINT_135',
                      vlanId: 135,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-LAN_PSAVV_134',
                    spec: {
                      name: 'LAN_PSAVV_134',
                      vlanId: 134,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-LAN_SUPPORT_133',
                    spec: {
                      name: 'LAN_SUPPORT_133',
                      vlanId: 133,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-LAN_ADMCOM_132',
                    spec: {
                      name: 'LAN_ADMCOM_132',
                      vlanId: 132,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-LAN_IT_131',
                    spec: {
                      name: 'LAN_IT_131',
                      vlanId: 131,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-WIFI_MOBILE',
                    spec: {
                      name: 'WIFI_MOBILE',
                      vlanId: 122,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-NFS_Stornetapp',
                    spec: {
                      name: 'NFS_Stornetapp',
                      vlanId: 601,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-LAN Prod',
                    spec: {
                      name: 'LAN Prod',
                      vlanId: 1000,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-PROD_Management',
                    spec: {
                      name: 'PROD_Management',
                      vlanId: 150,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-DMZ_CSA_IVANTI',
                    spec: {
                      name: 'DMZ_CSA_IVANTI',
                      vlanId: 187,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-DMZ_CL-BYTEL',
                    spec: {
                      name: 'DMZ_CL-BYTEL',
                      vlanId: 161,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  },
                  {
                    computedPolicy: {
                      nicTeaming: {
                        nicOrder: {
                          activeNic: [
                            'vmnic4',
                            'vmnic5'
                          ]
                        },
                        notifySwitches: true,
                        policy: 'loadbalance_srcid',
                        rollingOrder: false
                      }
                    },
                    key: 'key-vim.host.PortGroup-DMZ_IPSEC_CLD',
                    spec: {
                      name: 'DMZ_IPSEC_CLD',
                      vlanId: 160,
                      vswitchName: 'vSwitch2'
                    },
                    vswitch: 'key-vim.host.VirtualSwitch-vSwitch2'
                  }
                ],
                vnic: [
                  {
                    device: 'vmk0',
                    key: 'key-vim.host.VirtualNic-vmk0',
                    port: 'key-vim.host.PortGroup.Port-100663328',
                    portgroup: 'Management Network'
                  },
                  {
                    device: 'vmk1',
                    key: 'key-vim.host.VirtualNic-vmk1',
                    port: 'key-vim.host.PortGroup.Port-67108897',
                    portgroup: 'iSCSI-A'
                  },
                  {
                    device: 'vmk2',
                    key: 'key-vim.host.VirtualNic-vmk2',
                    port: 'key-vim.host.PortGroup.Port-67108898',
                    portgroup: 'iSCSI-B'
                  },
                  {
                    device: 'vmk3',
                    key: 'key-vim.host.VirtualNic-vmk3',
                    port: 'key-vim.host.PortGroup.Port-134217763',
                    portgroup: 'vMotion-A'
                  },
                  {
                    device: 'vmk4',
                    key: 'key-vim.host.VirtualNic-vmk4',
                    port: 'key-vim.host.PortGroup.Port-134217764',
                    portgroup: 'vMotion-B'
                  }
                ]
              },
              storageDevice: {
                hostBusAdapter: [
                  {
                    bus: -1,
                    configuredStaticTarget: [
                      {
                        address: '192.168.51.2',
                        iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6',
                        parent: 'vmhba64',
                        port: 3260
                      },
                      {
                        address: '192.168.51.1',
                        iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6',
                        parent: 'vmhba64',
                        port: 3260
                      },
                      {
                        address: '192.168.52.1',
                        iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6',
                        parent: 'vmhba64',
                        port: 3260
                      },
                      {
                        address: '192.168.52.2',
                        iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6',
                        parent: 'vmhba64',
                        port: 3260
                      }
                    ],
                    device: 'vmhba64',
                    driver: 'iscsi_vmk',
                    iScsiAlias: '',
                    iScsiName: 'iqn.1987-05.com.cisco:esxi0:3',
                    isSoftwareBased: true,
                    key: 'key-vim.host.InternetScsiHba-vmhba64',
                    model: 'iSCSI Software Adapter',
                    pci: 'N/A',
                    status: 'online'
                  }
                ],
                multipathInfo: {
                  lun: [
                    {
                      id: '0200000000600a098038314647492452446a6c2f514c554e20432d',
                      key: 'key-vim.host.MultipathInfo.LogicalUnit-0200000000600a098038314647492452446a6c2f514c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-0200000000600a098038314647492452446a6c2f514c554e20432d',
                      path: [
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C0:T0:L0',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-0200000000600a098038314647492452446a6c2f514c554e20432d',
                          name: 'vmhba64:C0:T0:L0',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C3:T0:L0',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-0200000000600a098038314647492452446a6c2f514c554e20432d',
                          name: 'vmhba64:C3:T0:L0',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C2:T0:L0',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-0200000000600a098038314647492452446a6c2f514c554e20432d',
                          name: 'vmhba64:C2:T0:L0',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C1:T0:L0',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-0200000000600a098038314647492452446a6c2f514c554e20432d',
                          name: 'vmhba64:C1:T0:L0',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        }
                      ],
                      policy: {
                        policy: 'VMW_PSP_RR'
                      },
                      storageArrayTypePolicy: {
                        policy: 'VMW_SATP_ALUA'
                      }
                    },
                    {
                      id: '02000b0000600a098038314647492452446a6c2f614c554e20432d',
                      key: 'key-vim.host.MultipathInfo.LogicalUnit-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                      path: [
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C0:T0:L11',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                          name: 'vmhba64:C0:T0:L11',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C1:T0:L11',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                          name: 'vmhba64:C1:T0:L11',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C2:T0:L11',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                          name: 'vmhba64:C2:T0:L11',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C3:T0:L11',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                          name: 'vmhba64:C3:T0:L11',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        }
                      ],
                      policy: {
                        policy: 'VMW_PSP_RR'
                      },
                      storageArrayTypePolicy: {
                        policy: 'VMW_SATP_ALUA'
                      }
                    },
                    {
                      id: '02000c0000600a098038314647492452446a6c2f624c554e20432d',
                      key: 'key-vim.host.MultipathInfo.LogicalUnit-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                      path: [
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C0:T0:L12',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                          name: 'vmhba64:C0:T0:L12',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C1:T0:L12',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                          name: 'vmhba64:C1:T0:L12',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C2:T0:L12',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                          name: 'vmhba64:C2:T0:L12',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C3:T0:L12',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                          name: 'vmhba64:C3:T0:L12',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        }
                      ],
                      policy: {
                        policy: 'VMW_PSP_RR'
                      },
                      storageArrayTypePolicy: {
                        policy: 'VMW_SATP_ALUA'
                      }
                    },
                    {
                      id: '02000d0000600a098038314647492452446a6c2f634c554e20432d',
                      key: 'key-vim.host.MultipathInfo.LogicalUnit-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                      path: [
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C0:T0:L13',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                          name: 'vmhba64:C0:T0:L13',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C1:T0:L13',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                          name: 'vmhba64:C1:T0:L13',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C2:T0:L13',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                          name: 'vmhba64:C2:T0:L13',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C3:T0:L13',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                          name: 'vmhba64:C3:T0:L13',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        }
                      ],
                      policy: {
                        policy: 'VMW_PSP_RR'
                      },
                      storageArrayTypePolicy: {
                        policy: 'VMW_SATP_ALUA'
                      }
                    },
                    {
                      id: '02000e0000600a098038314647492452446a6c2f644c554e20432d',
                      key: 'key-vim.host.MultipathInfo.LogicalUnit-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                      path: [
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C0:T0:L14',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                          name: 'vmhba64:C0:T0:L14',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C1:T0:L14',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                          name: 'vmhba64:C1:T0:L14',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C2:T0:L14',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                          name: 'vmhba64:C2:T0:L14',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C3:T0:L14',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                          name: 'vmhba64:C3:T0:L14',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        }
                      ],
                      policy: {
                        policy: 'VMW_PSP_RR'
                      },
                      storageArrayTypePolicy: {
                        policy: 'VMW_SATP_ALUA'
                      }
                    },
                    {
                      id: '0200140000600a098038314647492452446a6c2f664c554e20432d',
                      key: 'key-vim.host.MultipathInfo.LogicalUnit-0200140000600a098038314647492452446a6c2f664c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-0200140000600a098038314647492452446a6c2f664c554e20432d',
                      path: [
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C0:T0:L20',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-0200140000600a098038314647492452446a6c2f664c554e20432d',
                          name: 'vmhba64:C0:T0:L20',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C1:T0:L20',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-0200140000600a098038314647492452446a6c2f664c554e20432d',
                          name: 'vmhba64:C1:T0:L20',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C2:T0:L20',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-0200140000600a098038314647492452446a6c2f664c554e20432d',
                          name: 'vmhba64:C2:T0:L20',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C3:T0:L20',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-0200140000600a098038314647492452446a6c2f664c554e20432d',
                          name: 'vmhba64:C3:T0:L20',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        }
                      ],
                      policy: {
                        policy: 'VMW_PSP_RR'
                      },
                      storageArrayTypePolicy: {
                        policy: 'VMW_SATP_ALUA'
                      }
                    },
                    {
                      id: '0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                      key: 'key-vim.host.MultipathInfo.LogicalUnit-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                      path: [
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C2:T0:L100',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                          name: 'vmhba64:C2:T0:L100',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: true,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C1:T0:L100',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                          name: 'vmhba64:C1:T0:L100',
                          pathState: 'active',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C0:T0:L100',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                          name: 'vmhba64:C0:T0:L100',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.51.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                          isWorkingPath: false,
                          key: 'key-vim.host.MultipathInfo.Path-vmhba64:C3:T0:L100',
                          lun: 'key-vim.host.MultipathInfo.LogicalUnit-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                          name: 'vmhba64:C3:T0:L100',
                          pathState: 'standby',
                          state: 'active',
                          transport: {
                            address: [
                              '192.168.52.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        }
                      ],
                      policy: {
                        policy: 'VMW_PSP_RR'
                      },
                      storageArrayTypePolicy: {
                        policy: 'VMW_SATP_ALUA'
                      }
                    }
                  ]
                },
                plugStoreTopology: {
                  adapter: [
                    {
                      adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                      key: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      path: [
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L0',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L100',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L100',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L100',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L11',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L12',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L13',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L14',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L11',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L12',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L13',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L14',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L11',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L12',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L13',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L14',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L11',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L12',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L13',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L14',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L0',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L0',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L20',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L20',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L0',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L20',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L20',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L100'
                      ]
                    }
                  ],
                  device: [
                    {
                      key: 'key-vim.host.PlugStoreTopology.Device-0200000000600a098038314647492452446a6c2f514c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-0200000000600a098038314647492452446a6c2f514c554e20432d',
                      path: [
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L0',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L0',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L0',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L0'
                      ]
                    },
                    {
                      key: 'key-vim.host.PlugStoreTopology.Device-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                      path: [
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L11',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L11',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L11',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L11'
                      ]
                    },
                    {
                      key: 'key-vim.host.PlugStoreTopology.Device-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                      path: [
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L12',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L12',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L12',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L12'
                      ]
                    },
                    {
                      key: 'key-vim.host.PlugStoreTopology.Device-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                      path: [
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L13',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L13',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L13',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L13'
                      ]
                    },
                    {
                      key: 'key-vim.host.PlugStoreTopology.Device-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                      path: [
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L14',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L14',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L14',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L14'
                      ]
                    },
                    {
                      key: 'key-vim.host.PlugStoreTopology.Device-0200140000600a098038314647492452446a6c2f664c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-0200140000600a098038314647492452446a6c2f664c554e20432d',
                      path: [
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L20',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L20',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L20',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L20'
                      ]
                    },
                    {
                      key: 'key-vim.host.PlugStoreTopology.Device-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                      lun: 'key-vim.host.ScsiDisk-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                      path: [
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L100',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L100',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L100',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L100'
                      ]
                    }
                  ],
                  path: [
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 0,
                      device: 'key-vim.host.PlugStoreTopology.Device-0200000000600a098038314647492452446a6c2f514c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L0',
                      lunNumber: 0,
                      name: 'vmhba64:C0:T0:L0',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1034',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 2,
                      device: 'key-vim.host.PlugStoreTopology.Device-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L100',
                      lunNumber: 100,
                      name: 'vmhba64:C2:T0:L100',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000015,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1030',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 1,
                      device: 'key-vim.host.PlugStoreTopology.Device-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L100',
                      lunNumber: 100,
                      name: 'vmhba64:C1:T0:L100',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000014,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1032',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 0,
                      device: 'key-vim.host.PlugStoreTopology.Device-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L100',
                      lunNumber: 100,
                      name: 'vmhba64:C0:T0:L100',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1034',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 0,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L11',
                      lunNumber: 11,
                      name: 'vmhba64:C0:T0:L11',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1034',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 0,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L12',
                      lunNumber: 12,
                      name: 'vmhba64:C0:T0:L12',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1034',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 0,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L13',
                      lunNumber: 13,
                      name: 'vmhba64:C0:T0:L13',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1034',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 0,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L14',
                      lunNumber: 14,
                      name: 'vmhba64:C0:T0:L14',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1034',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 1,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L11',
                      lunNumber: 11,
                      name: 'vmhba64:C1:T0:L11',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000014,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1032',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 1,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L12',
                      lunNumber: 12,
                      name: 'vmhba64:C1:T0:L12',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000014,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1032',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 1,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L13',
                      lunNumber: 13,
                      name: 'vmhba64:C1:T0:L13',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000014,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1032',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 1,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L14',
                      lunNumber: 14,
                      name: 'vmhba64:C1:T0:L14',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000014,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1032',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 2,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L11',
                      lunNumber: 11,
                      name: 'vmhba64:C2:T0:L11',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000015,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1030',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 2,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L12',
                      lunNumber: 12,
                      name: 'vmhba64:C2:T0:L12',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000015,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1030',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 2,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L13',
                      lunNumber: 13,
                      name: 'vmhba64:C2:T0:L13',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000015,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1030',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 2,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L14',
                      lunNumber: 14,
                      name: 'vmhba64:C2:T0:L14',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000015,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1030',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 3,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L11',
                      lunNumber: 11,
                      name: 'vmhba64:C3:T0:L11',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000016,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1035',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 3,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L12',
                      lunNumber: 12,
                      name: 'vmhba64:C3:T0:L12',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000016,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1035',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 3,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L13',
                      lunNumber: 13,
                      name: 'vmhba64:C3:T0:L13',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000016,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1035',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 3,
                      device: 'key-vim.host.PlugStoreTopology.Device-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L14',
                      lunNumber: 14,
                      name: 'vmhba64:C3:T0:L14',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000016,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1035',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 3,
                      device: 'key-vim.host.PlugStoreTopology.Device-0200000000600a098038314647492452446a6c2f514c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L0',
                      lunNumber: 0,
                      name: 'vmhba64:C3:T0:L0',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000016,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1035',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 2,
                      device: 'key-vim.host.PlugStoreTopology.Device-0200000000600a098038314647492452446a6c2f514c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L0',
                      lunNumber: 0,
                      name: 'vmhba64:C2:T0:L0',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000015,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1030',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 0,
                      device: 'key-vim.host.PlugStoreTopology.Device-0200140000600a098038314647492452446a6c2f664c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L20',
                      lunNumber: 20,
                      name: 'vmhba64:C0:T0:L20',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1034',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 1,
                      device: 'key-vim.host.PlugStoreTopology.Device-0200140000600a098038314647492452446a6c2f664c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L20',
                      lunNumber: 20,
                      name: 'vmhba64:C1:T0:L20',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000014,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1032',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 1,
                      device: 'key-vim.host.PlugStoreTopology.Device-0200000000600a098038314647492452446a6c2f514c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L0',
                      lunNumber: 0,
                      name: 'vmhba64:C1:T0:L0',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000014,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1032',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 2,
                      device: 'key-vim.host.PlugStoreTopology.Device-0200140000600a098038314647492452446a6c2f664c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L20',
                      lunNumber: 20,
                      name: 'vmhba64:C2:T0:L20',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000015,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1030',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 3,
                      device: 'key-vim.host.PlugStoreTopology.Device-0200140000600a098038314647492452446a6c2f664c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L20',
                      lunNumber: 20,
                      name: 'vmhba64:C3:T0:L20',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000016,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1035',
                      targetNumber: 0
                    },
                    {
                      adapter: 'key-vim.host.PlugStoreTopology.Adapter-vmhba64',
                      channelNumber: 3,
                      device: 'key-vim.host.PlugStoreTopology.Device-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                      key: 'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L100',
                      lunNumber: 100,
                      name: 'vmhba64:C3:T0:L100',
                      target: 'key-vim.host.PlugStoreTopology.Target-00023d000016,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1035',
                      targetNumber: 0
                    }
                  ],
                  plugin: [
                    {
                      claimedPath: [
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L0',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L100',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L100',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L100',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L11',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L12',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L13',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L14',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L11',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L12',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L13',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L14',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L11',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L12',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L13',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L14',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L11',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L12',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L13',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L14',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L0',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L0',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C0:T0:L20',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L20',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C1:T0:L0',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C2:T0:L20',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L20',
                        'key-vim.host.PlugStoreTopology.Path-vmhba64:C3:T0:L100'
                      ],
                      device: [
                        'key-vim.host.PlugStoreTopology.Device-0200000000600a098038314647492452446a6c2f514c554e20432d',
                        'key-vim.host.PlugStoreTopology.Device-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                        'key-vim.host.PlugStoreTopology.Device-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                        'key-vim.host.PlugStoreTopology.Device-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                        'key-vim.host.PlugStoreTopology.Device-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                        'key-vim.host.PlugStoreTopology.Device-0200140000600a098038314647492452446a6c2f664c554e20432d',
                        'key-vim.host.PlugStoreTopology.Device-0200640000600a098038314647492452446a6c2f2f4c554e20432d'
                      ],
                      key: 'key-vim.host.PlugStoreTopology.Plugin-NMP',
                      name: 'NMP'
                    }
                  ],
                  target: [
                    {
                      key: 'key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1034',
                      transport: {
                        address: [
                          '192.168.51.2:3260'
                        ],
                        classes: [
                          'HostInternetScsiTargetTransport',
                          'HostTargetTransport'
                        ],
                        iScsiAlias: '',
                        iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                      }
                    },
                    {
                      key: 'key-vim.host.PlugStoreTopology.Target-00023d000015,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1030',
                      transport: {
                        address: [
                          '192.168.52.1:3260'
                        ],
                        classes: [
                          'HostInternetScsiTargetTransport',
                          'HostTargetTransport'
                        ],
                        iScsiAlias: '',
                        iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                      }
                    },
                    {
                      key: 'key-vim.host.PlugStoreTopology.Target-00023d000014,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1032',
                      transport: {
                        address: [
                          '192.168.51.1:3260'
                        ],
                        classes: [
                          'HostInternetScsiTargetTransport',
                          'HostTargetTransport'
                        ],
                        iScsiAlias: '',
                        iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                      }
                    },
                    {
                      key: 'key-vim.host.PlugStoreTopology.Target-00023d000016,iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6,t,1035',
                      transport: {
                        address: [
                          '192.168.52.2:3260'
                        ],
                        classes: [
                          'HostInternetScsiTargetTransport',
                          'HostTargetTransport'
                        ],
                        iScsiAlias: '',
                        iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                      }
                    }
                  ]
                },
                scsiLun: [
                  {
                    alternateName: [
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'SERIALNUM',
                        namespaceId: 4
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'NAA',
                        namespaceId: 3
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      }
                    ],
                    canonicalName: 'naa.600a098038314647492452446a6c2f51',
                    capabilities: {
                      updateDisplayNameSupported: true
                    },
                    descriptor: [
                      {
                        id: 'naa.600a098038314647492452446a6c2f51',
                        quality: 'highQuality'
                      },
                      {
                        id: 'vml.0200000000600a098038314647492452446a6c2f514c554e20432d',
                        quality: 'mediumQuality'
                      },
                      {
                        id: '0200000000600a098038314647492452446a6c2f514c554e20432d',
                        quality: 'mediumQuality'
                      }
                    ],
                    deviceName: '/vmfs/devices/disks/naa.600a098038314647492452446a6c2f51',
                    deviceType: 'disk',
                    displayName: 'NETAPP iSCSI Disk (naa.600a098038314647492452446a6c2f51)',
                    durableName: {
                      namespace: 'NAA',
                      namespaceId: 3
                    },
                    key: 'key-vim.host.ScsiDisk-0200000000600a098038314647492452446a6c2f514c554e20432d',
                    lunType: 'disk',
                    model: 'LUN C-Mode',
                    operationalState: [
                      'ok'
                    ],
                    queueDepth: 128,
                    revision: '9131',
                    scsiLevel: 6,
                    serialNumber: 'unavailable',
                    uuid: '0200000000600a098038314647492452446a6c2f514c554e20432d',
                    vStorageSupport: 'vStorageSupported',
                    vendor: 'NETAPP'
                  },
                  {
                    alternateName: [
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'SERIALNUM',
                        namespaceId: 4
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'NAA',
                        namespaceId: 3
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      }
                    ],
                    canonicalName: 'naa.600a098038314647492452446a6c2f61',
                    capabilities: {
                      updateDisplayNameSupported: true
                    },
                    descriptor: [
                      {
                        id: 'naa.600a098038314647492452446a6c2f61',
                        quality: 'highQuality'
                      },
                      {
                        id: 'vml.02000b0000600a098038314647492452446a6c2f614c554e20432d',
                        quality: 'mediumQuality'
                      },
                      {
                        id: '02000b0000600a098038314647492452446a6c2f614c554e20432d',
                        quality: 'mediumQuality'
                      }
                    ],
                    deviceName: '/vmfs/devices/disks/naa.600a098038314647492452446a6c2f61',
                    deviceType: 'disk',
                    displayName: 'NETAPP iSCSI Disk (naa.600a098038314647492452446a6c2f61)',
                    durableName: {
                      namespace: 'NAA',
                      namespaceId: 3
                    },
                    key: 'key-vim.host.ScsiDisk-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                    lunType: 'disk',
                    model: 'LUN C-Mode',
                    operationalState: [
                      'ok'
                    ],
                    queueDepth: 128,
                    revision: '9131',
                    scsiLevel: 6,
                    serialNumber: 'unavailable',
                    uuid: '02000b0000600a098038314647492452446a6c2f614c554e20432d',
                    vStorageSupport: 'vStorageSupported',
                    vendor: 'NETAPP'
                  },
                  {
                    alternateName: [
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'SERIALNUM',
                        namespaceId: 4
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'NAA',
                        namespaceId: 3
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      }
                    ],
                    canonicalName: 'naa.600a098038314647492452446a6c2f62',
                    capabilities: {
                      updateDisplayNameSupported: true
                    },
                    descriptor: [
                      {
                        id: 'naa.600a098038314647492452446a6c2f62',
                        quality: 'highQuality'
                      },
                      {
                        id: 'vml.02000c0000600a098038314647492452446a6c2f624c554e20432d',
                        quality: 'mediumQuality'
                      },
                      {
                        id: '02000c0000600a098038314647492452446a6c2f624c554e20432d',
                        quality: 'mediumQuality'
                      }
                    ],
                    deviceName: '/vmfs/devices/disks/naa.600a098038314647492452446a6c2f62',
                    deviceType: 'disk',
                    displayName: 'NETAPP iSCSI Disk (naa.600a098038314647492452446a6c2f62)',
                    durableName: {
                      namespace: 'NAA',
                      namespaceId: 3
                    },
                    key: 'key-vim.host.ScsiDisk-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                    lunType: 'disk',
                    model: 'LUN C-Mode',
                    operationalState: [
                      'ok'
                    ],
                    queueDepth: 128,
                    revision: '9131',
                    scsiLevel: 6,
                    serialNumber: 'unavailable',
                    uuid: '02000c0000600a098038314647492452446a6c2f624c554e20432d',
                    vStorageSupport: 'vStorageSupported',
                    vendor: 'NETAPP'
                  },
                  {
                    alternateName: [
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'SERIALNUM',
                        namespaceId: 4
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'NAA',
                        namespaceId: 3
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      }
                    ],
                    canonicalName: 'naa.600a098038314647492452446a6c2f63',
                    capabilities: {
                      updateDisplayNameSupported: true
                    },
                    descriptor: [
                      {
                        id: 'naa.600a098038314647492452446a6c2f63',
                        quality: 'highQuality'
                      },
                      {
                        id: 'vml.02000d0000600a098038314647492452446a6c2f634c554e20432d',
                        quality: 'mediumQuality'
                      },
                      {
                        id: '02000d0000600a098038314647492452446a6c2f634c554e20432d',
                        quality: 'mediumQuality'
                      }
                    ],
                    deviceName: '/vmfs/devices/disks/naa.600a098038314647492452446a6c2f63',
                    deviceType: 'disk',
                    displayName: 'NETAPP iSCSI Disk (naa.600a098038314647492452446a6c2f63)',
                    durableName: {
                      namespace: 'NAA',
                      namespaceId: 3
                    },
                    key: 'key-vim.host.ScsiDisk-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                    lunType: 'disk',
                    model: 'LUN C-Mode',
                    operationalState: [
                      'ok'
                    ],
                    queueDepth: 128,
                    revision: '9131',
                    scsiLevel: 6,
                    serialNumber: 'unavailable',
                    uuid: '02000d0000600a098038314647492452446a6c2f634c554e20432d',
                    vStorageSupport: 'vStorageSupported',
                    vendor: 'NETAPP'
                  },
                  {
                    alternateName: [
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'SERIALNUM',
                        namespaceId: 4
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'NAA',
                        namespaceId: 3
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      }
                    ],
                    canonicalName: 'naa.600a098038314647492452446a6c2f64',
                    capabilities: {
                      updateDisplayNameSupported: true
                    },
                    descriptor: [
                      {
                        id: 'naa.600a098038314647492452446a6c2f64',
                        quality: 'highQuality'
                      },
                      {
                        id: 'vml.02000e0000600a098038314647492452446a6c2f644c554e20432d',
                        quality: 'mediumQuality'
                      },
                      {
                        id: '02000e0000600a098038314647492452446a6c2f644c554e20432d',
                        quality: 'mediumQuality'
                      }
                    ],
                    deviceName: '/vmfs/devices/disks/naa.600a098038314647492452446a6c2f64',
                    deviceType: 'disk',
                    displayName: 'NETAPP iSCSI Disk (naa.600a098038314647492452446a6c2f64)',
                    durableName: {
                      namespace: 'NAA',
                      namespaceId: 3
                    },
                    key: 'key-vim.host.ScsiDisk-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                    lunType: 'disk',
                    model: 'LUN C-Mode',
                    operationalState: [
                      'ok'
                    ],
                    queueDepth: 128,
                    revision: '9131',
                    scsiLevel: 6,
                    serialNumber: 'unavailable',
                    uuid: '02000e0000600a098038314647492452446a6c2f644c554e20432d',
                    vStorageSupport: 'vStorageSupported',
                    vendor: 'NETAPP'
                  },
                  {
                    alternateName: [
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'SERIALNUM',
                        namespaceId: 4
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'NAA',
                        namespaceId: 3
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      }
                    ],
                    canonicalName: 'naa.600a098038314647492452446a6c2f66',
                    capabilities: {
                      updateDisplayNameSupported: true
                    },
                    descriptor: [
                      {
                        id: 'naa.600a098038314647492452446a6c2f66',
                        quality: 'highQuality'
                      },
                      {
                        id: 'vml.0200140000600a098038314647492452446a6c2f664c554e20432d',
                        quality: 'mediumQuality'
                      },
                      {
                        id: '0200140000600a098038314647492452446a6c2f664c554e20432d',
                        quality: 'mediumQuality'
                      }
                    ],
                    deviceName: '/vmfs/devices/disks/naa.600a098038314647492452446a6c2f66',
                    deviceType: 'disk',
                    displayName: 'NETAPP iSCSI Disk (naa.600a098038314647492452446a6c2f66)',
                    durableName: {
                      namespace: 'NAA',
                      namespaceId: 3
                    },
                    key: 'key-vim.host.ScsiDisk-0200140000600a098038314647492452446a6c2f664c554e20432d',
                    lunType: 'disk',
                    model: 'LUN C-Mode',
                    operationalState: [
                      'ok'
                    ],
                    queueDepth: 128,
                    revision: '9131',
                    scsiLevel: 6,
                    serialNumber: 'unavailable',
                    uuid: '0200140000600a098038314647492452446a6c2f664c554e20432d',
                    vStorageSupport: 'vStorageSupported',
                    vendor: 'NETAPP'
                  },
                  {
                    alternateName: [
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'SERIALNUM',
                        namespaceId: 4
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'NAA',
                        namespaceId: 3
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'UNKNOWN',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      },
                      {
                        namespace: 'GENERIC_VPD',
                        namespaceId: 5
                      }
                    ],
                    canonicalName: 'naa.600a098038314647492452446a6c2f2f',
                    capabilities: {
                      updateDisplayNameSupported: true
                    },
                    descriptor: [
                      {
                        id: 'naa.600a098038314647492452446a6c2f2f',
                        quality: 'highQuality'
                      },
                      {
                        id: 'vml.0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                        quality: 'mediumQuality'
                      },
                      {
                        id: '0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                        quality: 'mediumQuality'
                      }
                    ],
                    deviceName: '/vmfs/devices/disks/naa.600a098038314647492452446a6c2f2f',
                    deviceType: 'disk',
                    displayName: 'NETAPP iSCSI Disk (naa.600a098038314647492452446a6c2f2f)',
                    durableName: {
                      namespace: 'NAA',
                      namespaceId: 3
                    },
                    key: 'key-vim.host.ScsiDisk-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                    lunType: 'disk',
                    model: 'LUN C-Mode',
                    operationalState: [
                      'ok'
                    ],
                    queueDepth: 128,
                    revision: '9131',
                    scsiLevel: 6,
                    serialNumber: 'unavailable',
                    uuid: '0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                    vStorageSupport: 'vStorageSupported',
                    vendor: 'NETAPP'
                  }
                ],
                scsiTopology: {
                  adapter: [
                    {
                      adapter: 'key-vim.host.InternetScsiHba-vmhba64',
                      key: 'key-vim.host.ScsiTopology.Interface-vmhba64',
                      target: [
                        {
                          key: 'key-vim.host.ScsiTopology.Target-vmhba64:0:0',
                          lun: [
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-0200000000600a098038314647492452446a6c2f514c554e20432d',
                              lun: 0,
                              scsiLun: 'key-vim.host.ScsiDisk-0200000000600a098038314647492452446a6c2f514c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                              lun: 11,
                              scsiLun: 'key-vim.host.ScsiDisk-02000b0000600a098038314647492452446a6c2f614c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                              lun: 12,
                              scsiLun: 'key-vim.host.ScsiDisk-02000c0000600a098038314647492452446a6c2f624c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                              lun: 13,
                              scsiLun: 'key-vim.host.ScsiDisk-02000d0000600a098038314647492452446a6c2f634c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                              lun: 14,
                              scsiLun: 'key-vim.host.ScsiDisk-02000e0000600a098038314647492452446a6c2f644c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-0200140000600a098038314647492452446a6c2f664c554e20432d',
                              lun: 20,
                              scsiLun: 'key-vim.host.ScsiDisk-0200140000600a098038314647492452446a6c2f664c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                              lun: 100,
                              scsiLun: 'key-vim.host.ScsiDisk-0200640000600a098038314647492452446a6c2f2f4c554e20432d'
                            }
                          ],
                          target: 0,
                          transport: {
                            address: [
                              '192.168.51.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          key: 'key-vim.host.ScsiTopology.Target-vmhba64:2:0',
                          lun: [
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-0200000000600a098038314647492452446a6c2f514c554e20432d',
                              lun: 0,
                              scsiLun: 'key-vim.host.ScsiDisk-0200000000600a098038314647492452446a6c2f514c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                              lun: 11,
                              scsiLun: 'key-vim.host.ScsiDisk-02000b0000600a098038314647492452446a6c2f614c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                              lun: 12,
                              scsiLun: 'key-vim.host.ScsiDisk-02000c0000600a098038314647492452446a6c2f624c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                              lun: 13,
                              scsiLun: 'key-vim.host.ScsiDisk-02000d0000600a098038314647492452446a6c2f634c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                              lun: 14,
                              scsiLun: 'key-vim.host.ScsiDisk-02000e0000600a098038314647492452446a6c2f644c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-0200140000600a098038314647492452446a6c2f664c554e20432d',
                              lun: 20,
                              scsiLun: 'key-vim.host.ScsiDisk-0200140000600a098038314647492452446a6c2f664c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                              lun: 100,
                              scsiLun: 'key-vim.host.ScsiDisk-0200640000600a098038314647492452446a6c2f2f4c554e20432d'
                            }
                          ],
                          target: 0,
                          transport: {
                            address: [
                              '192.168.52.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          key: 'key-vim.host.ScsiTopology.Target-vmhba64:1:0',
                          lun: [
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-0200000000600a098038314647492452446a6c2f514c554e20432d',
                              lun: 0,
                              scsiLun: 'key-vim.host.ScsiDisk-0200000000600a098038314647492452446a6c2f514c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                              lun: 11,
                              scsiLun: 'key-vim.host.ScsiDisk-02000b0000600a098038314647492452446a6c2f614c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                              lun: 12,
                              scsiLun: 'key-vim.host.ScsiDisk-02000c0000600a098038314647492452446a6c2f624c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                              lun: 13,
                              scsiLun: 'key-vim.host.ScsiDisk-02000d0000600a098038314647492452446a6c2f634c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                              lun: 14,
                              scsiLun: 'key-vim.host.ScsiDisk-02000e0000600a098038314647492452446a6c2f644c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-0200140000600a098038314647492452446a6c2f664c554e20432d',
                              lun: 20,
                              scsiLun: 'key-vim.host.ScsiDisk-0200140000600a098038314647492452446a6c2f664c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                              lun: 100,
                              scsiLun: 'key-vim.host.ScsiDisk-0200640000600a098038314647492452446a6c2f2f4c554e20432d'
                            }
                          ],
                          target: 0,
                          transport: {
                            address: [
                              '192.168.51.1:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        },
                        {
                          key: 'key-vim.host.ScsiTopology.Target-vmhba64:3:0',
                          lun: [
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-0200000000600a098038314647492452446a6c2f514c554e20432d',
                              lun: 0,
                              scsiLun: 'key-vim.host.ScsiDisk-0200000000600a098038314647492452446a6c2f514c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000b0000600a098038314647492452446a6c2f614c554e20432d',
                              lun: 11,
                              scsiLun: 'key-vim.host.ScsiDisk-02000b0000600a098038314647492452446a6c2f614c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000c0000600a098038314647492452446a6c2f624c554e20432d',
                              lun: 12,
                              scsiLun: 'key-vim.host.ScsiDisk-02000c0000600a098038314647492452446a6c2f624c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000d0000600a098038314647492452446a6c2f634c554e20432d',
                              lun: 13,
                              scsiLun: 'key-vim.host.ScsiDisk-02000d0000600a098038314647492452446a6c2f634c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-02000e0000600a098038314647492452446a6c2f644c554e20432d',
                              lun: 14,
                              scsiLun: 'key-vim.host.ScsiDisk-02000e0000600a098038314647492452446a6c2f644c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-0200140000600a098038314647492452446a6c2f664c554e20432d',
                              lun: 20,
                              scsiLun: 'key-vim.host.ScsiDisk-0200140000600a098038314647492452446a6c2f664c554e20432d'
                            },
                            {
                              key: 'key-vim.host.ScsiTopology.Lun-0200640000600a098038314647492452446a6c2f2f4c554e20432d',
                              lun: 100,
                              scsiLun: 'key-vim.host.ScsiDisk-0200640000600a098038314647492452446a6c2f2f4c554e20432d'
                            }
                          ],
                          target: 0,
                          transport: {
                            address: [
                              '192.168.52.2:3260'
                            ],
                            classes: [
                              'HostInternetScsiTargetTransport',
                              'HostTargetTransport'
                            ],
                            iScsiAlias: '',
                            iScsiName: 'iqn.1992-08.com.netapp:sn.96b514a8c2af11eb8b24d039ea28a70b:vs.6'
                          }
                        }
                      ]
                    }
                  ]
                },
                softwareInternetScsiEnabled: true
              },
              wakeOnLanCapable: false
            },
            configStatus: 'green',
            datastore: [
              {
                ref: 'datastore-72'
              },
              {
                ref: 'datastore-78'
              },
              {
                ref: 'datastore-80'
              },
              {
                ref: 'datastore-81'
              },
              {
                ref: 'datastore-82'
              },
              {
                ref: 'datastore-85'
              },
              {
                ref: 'datastore-86'
              },
              {
                ref: 'datastore-1004'
              }
            ],
            hardware: {
              smcPresent: false
            },
            licensableResource: {
              resource: {
                numCpuCores: 20,
                numCpuPackages: 2,
                numVmsStarted: 0
              }
            },
            name: 'stor-pro-esxi03.stordata.net',
            overallStatus: 'green',
            parent: {
              ref: 'domain-c8'
            },
            ref: 'host-85550',
            runtime: {
              bootTime: new Date('2024-12-19T09:21:51.460Z'),
              connectionState: 'connected',
              dasHostState: {
                state: 'connectedToMaster'
              },
              inMaintenanceMode: false,
              powerState: 'poweredOn',
              standbyMode: 'none'
            },
            summary: {
              config: {
                faultToleranceEnabled: false,
                port: 443,
                product: {
                  apiType: 'HostAgent',
                  apiVersion: '8.0.3.0',
                  build: '24280767',
                  fullName: 'VMware ESXi 8.0.3 build-24280767',
                  licenseProductName: 'VMware ESX Server',
                  licenseProductVersion: '8.0',
                  localeBuild: '000',
                  localeVersion: 'INTL',
                  name: 'VMware ESXi',
                  osType: 'vmnix-x86',
                  productLineId: 'embeddedEsx',
                  vendor: 'VMware, Inc.',
                  version: '8.0.3'
                },
                vmotionEnabled: true
              },
              currentEVCModeKey: 'intel-haswell',
              hardware: {
                cpuMhz: 2594,
                cpuModel: 'Intel(R) Xeon(R) CPU E5-2660 v3 @ 2.60GHz',
                memorySize: 274738421760,
                model: 'UCSB-B200-M4',
                numCpuCores: 20,
                numCpuPkgs: 2,
                numCpuThreads: 40,
                numHBAs: 1,
                numNics: 10,
                uuid: '600b96c8-ea07-e211-1000-00000000004f',
                vendor: 'Cisco Systems Inc'
              },
              managementServerIp: '10.10.1.150',
              maxEVCModeKey: 'intel-haswell',
              overallStatus: 'green',
              quickStats: {
                distributedCpuFairness: 788,
                distributedMemoryFairness: 464,
                overallCpuUsage: 5692,
                overallMemoryUsage: 148332,
                uptime: 6668960
              },
              rebootRequired: false
            },
            triggeredAlarmState: []
          }
        ]);
      });
    });

  });

  describe('The getVirtualMachines method', function() {

    it('should return an array of VM instances, when queried with a set of properties', function() {
      this.mockSoapOperation('5.5', 'RetrieveServiceContent');
      this.mockSoapOperation('5.5', 'getVirtualMachines/partial/CreateContainerView');
      this.mockSoapOperation('5.5', 'getVirtualMachines/partial/RetrievePropertiesEx');

      return client.getVirtualMachines([
        'config.alternateGuestName',
        'config.datastoreUrl',
        'config.firmware',
        'config.tools',
        'config.version',
        'guest',
        'runtime',
        'summary.overallStatus',
        'summary.quickStats',
        'summary.config',
        'summary.storage',
        'datastore'
      ]).then((vms) => {
        expect(vms).to.deep.equal([
          {
            datastore: [
              {
                ref: 'datastore-29'
              }, {
                ref: 'datastore-30'
              }
            ],
            config: {
              alternateGuestName: undefined,
              datastoreUrl: [
                {
                  name: 'Datastore01',
                  url: '/vmfs/volumes/5c486628-a1e8f2a1-0c56-b8ca3a700cd4'
                },
                {
                  name: 'Datastore02',
                  url: '/vmfs/volumes/5c486636-ea036e5d-d6e0-b8ca3a700cd4'
                }
              ],
              firmware: 'bios',
              tools: {
                afterPowerOn: true,
                afterResume: true,
                beforeGuestShutdown: true,
                beforeGuestStandby: true,
                lastInstallInfo: {
                  counter: 1
                },
                syncTimeWithHost: false,
                toolsUpgradePolicy: 'manual',
                toolsVersion: 10336
              },
              version: 'vmx-14'
            },
            guest: {
              appHeartbeatStatus: 'appStatusGray',
              disk: [
                {
                  capacity: 31569383424,
                  diskPath: '/',
                  freeSpace: 22578139136
                },
                {
                  capacity: 210304475136,
                  diskPath: '/var/lib/elasticsearch',
                  freeSpace: 197261094912
                }
              ],
              guestFamily: 'linuxGuest',
              guestFullName: 'Ubuntu Linux (64-bit)',
              guestId: 'ubuntu64Guest',
              guestOperationsReady: true,
              guestState: 'running',
              hostName: 'es-002.stordata.dev',
              interactiveGuestOperationsReady: false,
              ipAddress: '10.78.7.224',
              ipStack: [
                {
                  dnsConfig: {
                    dhcp: false,
                    domainName: 'stordata.local',
                    hostName: 'es-002.stordata.dev',
                    ipAddress: [
                      '127.0.0.53'
                    ],
                    searchDomain: [
                      'stordata.local',
                      'stordata.dev',
                      'stordata.fr'
                    ]
                  },
                  ipRouteConfig: {
                    ipRoute: [
                      {
                        gateway: {
                          device: '1',
                          ipAddress: '10.78.7.254'
                        },
                        network: '0.0.0.0',
                        prefixLength: 0
                      },
                      {
                        gateway: {
                          device: '0',
                          ipAddress: '10.78.7.254'
                        },
                        network: '0.0.0.0',
                        prefixLength: 0
                      },
                      {
                        gateway: {
                          device: '1'
                        },
                        network: '10.78.7.0',
                        prefixLength: 24
                      },
                      {
                        gateway: {
                          device: '0'
                        },
                        network: '10.78.7.0',
                        prefixLength: 24
                      },
                      {
                        gateway: {
                          device: '1'
                        },
                        network: 'fe80::',
                        prefixLength: 64
                      },
                      {
                        gateway: {
                          device: '0'
                        },
                        network: 'fe80::',
                        prefixLength: 64
                      },
                      {
                        gateway: {
                          device: '0'
                        },
                        network: 'fe80::250:56ff:fea7:2260',
                        prefixLength: 128
                      },
                      {
                        gateway: {
                          device: '1'
                        },
                        network: 'fe80::250:56ff:fea7:86a4',
                        prefixLength: 128
                      },
                      {
                        gateway: {
                          device: '1'
                        },
                        network: 'ff00::',
                        prefixLength: 8
                      },
                      {
                        gateway: {
                          device: '0'
                        },
                        network: 'ff00::',
                        prefixLength: 8
                      }
                    ]
                  }
                }
              ],
              net: [
                {
                  connected: true,
                  deviceConfigId: 4000,
                  ipAddress: [
                    '10.78.7.224',
                    'fe80::250:56ff:fea7:2260'
                  ],
                  ipConfig: {
                    ipAddress: [
                      {
                        ipAddress: '10.78.7.224',
                        prefixLength: 24,
                        state: 'preferred'
                      },
                      {
                        ipAddress: 'fe80::250:56ff:fea7:2260',
                        prefixLength: 64,
                        state: 'unknown'
                      }
                    ]
                  },
                  macAddress: '00:50:56:a7:22:60',
                  network: 'VM Network'
                },
                {
                  connected: true,
                  deviceConfigId: 4001,
                  ipAddress: [
                    '10.78.7.228',
                    'fe80::250:56ff:fea7:86a4'
                  ],
                  ipConfig: {
                    ipAddress: [
                      {
                        ipAddress: '10.78.7.228',
                        prefixLength: 24,
                        state: 'preferred'
                      },
                      {
                        ipAddress: 'fe80::250:56ff:fea7:86a4',
                        prefixLength: 64,
                        state: 'unknown'
                      }
                    ]
                  },
                  macAddress: '00:50:56:a7:86:a4',
                  network: 'VM Network'
                }
              ],
              screen: {
                height: 600,
                width: 800
              },
              toolsRunningStatus: 'guestToolsRunning',
              toolsStatus: 'toolsOk',
              toolsVersion: '10336',
              toolsVersionStatus: 'guestToolsUnmanaged',
              toolsVersionStatus2: 'guestToolsUnmanaged'
            },
            ref: 'vm-114',
            runtime: {
              bootTime: new Date('2019-02-06T15:25:58.648Z'),
              connectionState: 'connected',
              consolidationNeeded: false,
              dasVmProtection: {
                dasProtected: true
              },
              faultToleranceState: 'notConfigured',
              host: {
                ref: 'host-72'
              },
              maxCpuUsage: 4400,
              maxMemoryUsage: 4096,
              minRequiredEVCModeKey: 'intel-ivybridge',
              numMksConnections: 0,
              powerState: 'poweredOn',
              recordReplayState: 'inactive',
              suspendInterval: 0,
              toolsInstallerMounted: false
            },
            summary: {
              config: {
                annotation: '',
                cpuReservation: 0,
                guestFullName: 'Ubuntu Linux (64-bit)',
                guestId: 'ubuntu64Guest',
                installBootRequired: false,
                instanceUuid: '5027be87-92f3-d5bf-96c9-0238ba9ec0e2',
                memoryReservation: 0,
                memorySizeMB: 4096,
                name: 'es-002.stordata.dev',
                numCpu: 2,
                numEthernetCards: 2,
                numVirtualDisks: 2,
                template: false,
                uuid: '4227ce31-e061-26a9-e032-94d032cd77bd',
                vmPathName: '[Datastore02] es-002.stordata.dev/es-002.stordata.dev.vmx'
              },
              overallStatus: 'green',
              quickStats: {
                balloonedMemory: 0,
                compressedMemory: 0,
                consumedOverheadMemory: 36,
                distributedCpuEntitlement: 66,
                distributedMemoryEntitlement: 1688,
                ftLatencyStatus: 'gray',
                ftLogBandwidth: -1,
                ftSecondaryLatency: -1,
                guestHeartbeatStatus: 'green',
                guestMemoryUsage: 573,
                hostMemoryUsage: 4130,
                overallCpuDemand: 220,
                overallCpuUsage: 220,
                privateMemory: 4094,
                sharedMemory: 0,
                ssdSwappedMemory: 0,
                staticCpuEntitlement: 4400,
                staticMemoryEntitlement: 4350,
                swappedMemory: 0,
                uptimeSeconds: 1361665
              },
              storage: {
                committed: 251370938860,
                timestamp: new Date('2019-02-06T15:25:58.980Z'),
                uncommitted: 1022,
                unshared: 246960619520
              }
            }
          },
          {
            datastore: [
              {
                ref: 'datastore-29'
              }, {
                ref: 'datastore-30'
              }
            ],
            config: {
              alternateGuestName: undefined,
              datastoreUrl: [
                {
                  name: 'Datastore01',
                  url: '/vmfs/volumes/5c486628-a1e8f2a1-0c56-b8ca3a700cd4'
                },
                {
                  name: 'Datastore02',
                  url: '/vmfs/volumes/5c486636-ea036e5d-d6e0-b8ca3a700cd4'
                }
              ],
              firmware: 'bios',
              tools: {
                afterPowerOn: true,
                afterResume: true,
                beforeGuestShutdown: true,
                beforeGuestStandby: true,
                lastInstallInfo: {
                  counter: 1
                },
                syncTimeWithHost: false,
                toolsUpgradePolicy: 'manual',
                toolsVersion: 10336
              },
              version: 'vmx-14'
            },
            guest: {
              appHeartbeatStatus: 'appStatusGray',
              disk: [
                {
                  capacity: 31569383424,
                  diskPath: '/',
                  freeSpace: 22083219456
                }
              ],
              guestFamily: 'linuxGuest',
              guestFullName: 'Ubuntu Linux (64-bit)',
              guestId: 'ubuntu64Guest',
              guestOperationsReady: true,
              guestState: 'running',
              hostName: 'zabbix-001.stordata.dev',
              interactiveGuestOperationsReady: false,
              ipAddress: '10.78.7.226',
              ipStack: [
                {
                  dnsConfig: {
                    dhcp: false,
                    domainName: 'stordata.local',
                    hostName: 'zabbix-001.stordata.dev',
                    ipAddress: [
                      '127.0.0.53'
                    ],
                    searchDomain: [
                      'stordata.local',
                      'stordata.dev',
                      'stordata.fr'
                    ]
                  },
                  ipRouteConfig: {
                    ipRoute: [
                      {
                        gateway: {
                          device: '0',
                          ipAddress: '10.78.7.254'
                        },
                        network: '0.0.0.0',
                        prefixLength: 0
                      },
                      {
                        gateway: {
                          device: '0'
                        },
                        network: '10.78.7.0',
                        prefixLength: 24
                      },
                      {
                        gateway: {
                          device: '0'
                        },
                        network: 'fe80::',
                        prefixLength: 64
                      },
                      {
                        gateway: {
                          device: '0'
                        },
                        network: 'fe80::250:56ff:fea7:681e',
                        prefixLength: 128
                      },
                      {
                        gateway: {
                          device: '0'
                        },
                        network: 'ff00::',
                        prefixLength: 8
                      }
                    ]
                  }
                }
              ],
              net: [
                {
                  connected: true,
                  deviceConfigId: 4000,
                  ipAddress: [
                    '10.78.7.226',
                    'fe80::250:56ff:fea7:681e'
                  ],
                  ipConfig: {
                    ipAddress: [
                      {
                        ipAddress: '10.78.7.226',
                        prefixLength: 24,
                        state: 'preferred'
                      },
                      {
                        ipAddress: 'fe80::250:56ff:fea7:681e',
                        prefixLength: 64,
                        state: 'unknown'
                      }
                    ]
                  },
                  macAddress: '00:50:56:a7:68:1e',
                  network: 'VM Network'
                }
              ],
              screen: {
                height: 600,
                width: 800
              },
              toolsRunningStatus: 'guestToolsRunning',
              toolsStatus: 'toolsOk',
              toolsVersion: '10336',
              toolsVersionStatus: 'guestToolsUnmanaged',
              toolsVersionStatus2: 'guestToolsUnmanaged'
            },
            ref: 'vm-112',
            runtime: {
              bootTime: new Date('2019-02-05T09:08:36.569Z'),
              connectionState: 'connected',
              consolidationNeeded: false,
              dasVmProtection: {
                dasProtected: true
              },
              faultToleranceState: 'notConfigured',
              host: {
                ref: 'host-72'
              },
              maxCpuUsage: 4400,
              maxMemoryUsage: 4096,
              minRequiredEVCModeKey: 'intel-ivybridge',
              numMksConnections: 0,
              powerState: 'poweredOn',
              recordReplayState: 'inactive',
              suspendInterval: 0,
              toolsInstallerMounted: false
            },
            summary: {
              config: {
                annotation: '',
                cpuReservation: 0,
                guestFullName: 'Ubuntu Linux (64-bit)',
                guestId: 'ubuntu64Guest',
                installBootRequired: false,
                instanceUuid: '50274fe3-9eb2-0add-6205-b613484353e1',
                memoryReservation: 0,
                memorySizeMB: 4096,
                name: 'zabbix-001.stordata.dev',
                numCpu: 2,
                numEthernetCards: 1,
                numVirtualDisks: 1,
                template: false,
                uuid: '42274b0a-4870-874a-4bb8-6202e5ef7afe',
                vmPathName: '[Datastore02] zabbix-001.stordata.dev/zabbix-001.stordata.dev.vmx'
              },
              overallStatus: 'green',
              quickStats: {
                balloonedMemory: 0,
                compressedMemory: 0,
                consumedOverheadMemory: 37,
                distributedCpuEntitlement: 44,
                distributedMemoryEntitlement: 1393,
                ftLatencyStatus: 'gray',
                ftLogBandwidth: -1,
                ftSecondaryLatency: -1,
                guestHeartbeatStatus: 'green',
                guestMemoryUsage: 245,
                hostMemoryUsage: 3858,
                overallCpuDemand: 44,
                overallCpuUsage: 44,
                privateMemory: 3822,
                sharedMemory: 0,
                ssdSwappedMemory: 0,
                staticCpuEntitlement: 4400,
                staticMemoryEntitlement: 4350,
                swappedMemory: 0,
                uptimeSeconds: 1470705
              },
              storage: {
                committed: 36622574060,
                timestamp: new Date('2019-02-05T09:08:36.649Z'),
                uncommitted: 540,
                unshared: 32212254720
              }
            }
          }
        ]);
      });
    });

    it('should return an array of VM instances with full properties', function() {
      this.mockSoapOperation('5.5', 'RetrieveServiceContent');
      this.mockSoapOperation('5.5', 'getVirtualMachines/full/CreateContainerView');
      this.mockSoapOperation('5.5', 'getVirtualMachines/full/RetrievePropertiesEx');

      return client.getVirtualMachines().then((vms) => {
        expect(vms).to.deep.equal([
          {
            datastore: [
              {
                ref: 'datastore-29'
              }, {
                ref: 'datastore-30'
              }
            ],
            capability: {
              bootOptionsSupported: true,
              bootRetryOptionsSupported: true,
              changeTrackingSupported: true,
              consolePreferencesSupported: false,
              cpuFeatureMaskSupported: true,
              disableSnapshotsSupported: false,
              diskSharesSupported: true,
              guestAutoLockSupported: true,
              hostBasedReplicationSupported: true,
              lockSnapshotsSupported: true,
              memoryReservationLockSupported: true,
              memorySnapshotsSupported: true,
              multipleCoresPerSocketSupported: true,
              multipleSnapshotsSupported: true,
              npivWwnOnNonRdmVmSupported: true,
              poweredOffSnapshotsSupported: true,
              quiescedSnapshotsSupported: true,
              recordReplaySupported: false,
              revertToSnapshotSupported: true,
              s1AcpiManagementSupported: true,
              settingDisplayTopologySupported: false,
              settingScreenResolutionSupported: false,
              settingVideoRamSizeSupported: true,
              snapshotConfigSupported: true,
              snapshotOperationsSupported: true,
              swapPlacementSupported: true,
              toolsAutoUpdateSupported: false,
              toolsSyncTimeSupported: true,
              virtualMmuUsageSupported: false,
              vmNpivWwnDisableSupported: true,
              vmNpivWwnSupported: true,
              vmNpivWwnUpdateSupported: true
            },
            config: {
              alternateGuestName: undefined,
              annotation: undefined,
              changeTrackingEnabled: false,
              changeVersion: '2019-02-05T15:37:35.80704Z',
              cpuAllocation: {
                expandableReservation: false,
                limit: -1,
                reservation: 0,
                shares: {
                  level: 'normal',
                  shares: 2000
                }
              },
              cpuHotAddEnabled: false,
              cpuHotRemoveEnabled: false,
              datastoreUrl: [
                {
                  name: 'Datastore01',
                  url: '/vmfs/volumes/5c486628-a1e8f2a1-0c56-b8ca3a700cd4'
                },
                {
                  name: 'Datastore02',
                  url: '/vmfs/volumes/5c486636-ea036e5d-d6e0-b8ca3a700cd4'
                }
              ],
              extraConfig: {
                'ethernet0.pciSlotNumber': '160',
                'ethernet1.pciSlotNumber': '192',
                'guestinfo.vmtools.buildNumber': '8931395',
                'guestinfo.vmtools.description': 'open-vm-tools 10.3.0 build 8931395',
                'guestinfo.vmtools.versionNumber': '10336',
                'guestinfo.vmtools.versionString': '10.3.0',
                'hpet0.present': 'TRUE',
                'migrate.hostLog': 'es-002.stordata.dev-4359bcf6.hlog',
                'migrate.hostLogState': 'none',
                'migrate.migrationId': '0',
                'monitor.phys_bits_used': '43',
                'numa.autosize.cookie': '20001',
                'numa.autosize.vcpu.maxPerVirtualNode': '2',
                nvram: 'es-002.stordata.dev.nvram',
                'pciBridge0.pciSlotNumber': '17',
                'pciBridge0.present': 'TRUE',
                'pciBridge4.functions': '8',
                'pciBridge4.pciSlotNumber': '21',
                'pciBridge4.present': 'TRUE',
                'pciBridge4.virtualDev': 'pcieRootPort',
                'pciBridge5.functions': '8',
                'pciBridge5.pciSlotNumber': '22',
                'pciBridge5.present': 'TRUE',
                'pciBridge5.virtualDev': 'pcieRootPort',
                'pciBridge6.functions': '8',
                'pciBridge6.pciSlotNumber': '23',
                'pciBridge6.present': 'TRUE',
                'pciBridge6.virtualDev': 'pcieRootPort',
                'pciBridge7.functions': '8',
                'pciBridge7.pciSlotNumber': '24',
                'pciBridge7.present': 'TRUE',
                'pciBridge7.virtualDev': 'pcieRootPort',
                'sata0.pciSlotNumber': '33',
                'sched.cpu.latencySensitivity': 'normal',
                'sched.swap.derivedName': '/vmfs/volumes/5c486636-ea036e5d-d6e0-b8ca3a700cd4/es-002.stordata.dev/es-002.stordata.dev-57d3b00c.vswp',
                'scsi0.pciSlotNumber': '16',
                'scsi0:0.redo': undefined,
                'scsi0:1.redo': undefined,
                softPowerOff: 'FALSE',
                'svga.guestBackedPrimaryAware': 'TRUE',
                'svga.present': 'TRUE',
                'tools.guest.desktop.autolock': 'FALSE',
                'toolsInstallManager.updateCounter': '1',
                'vmci0.pciSlotNumber': '32',
                'vmotion.checkpointFBSize': '4194304',
                'vmotion.checkpointSVGAPrimarySize': '4194304',
                'vmware.tools.internalversion': '10336',
                'vmware.tools.requiredversion': '10338'
              },
              firmware: 'bios',
              guestAutoLockEnabled: false,
              guestFullName: 'Ubuntu Linux (64-bit)',
              guestId: 'ubuntu64Guest',
              hardware: {
                device: [
                  {
                    busNumber: 0,
                    classes: [
                      'VirtualIDEController',
                      'VirtualController',
                      'VirtualDevice'
                    ],
                    deviceInfo: {
                      label: 'IDE 0',
                      summary: 'IDE 0'
                    },
                    key: 200
                  },
                  {
                    busNumber: 1,
                    classes: [
                      'VirtualIDEController',
                      'VirtualController',
                      'VirtualDevice'
                    ],
                    deviceInfo: {
                      label: 'IDE 1',
                      summary: 'IDE 1'
                    },
                    key: 201
                  },
                  {
                    busNumber: 0,
                    classes: [
                      'VirtualPS2Controller',
                      'VirtualController',
                      'VirtualDevice'
                    ],
                    device: [
                      600,
                      700
                    ],
                    deviceInfo: {
                      label: 'PS2 controller 0',
                      summary: 'PS2 controller 0'
                    },
                    key: 300
                  },
                  {
                    busNumber: 0,
                    classes: [
                      'VirtualPCIController',
                      'VirtualController',
                      'VirtualDevice'
                    ],
                    device: [
                      500,
                      12000,
                      7000,
                      1000,
                      15000,
                      4000
                    ],
                    deviceInfo: {
                      label: 'PCI controller 0',
                      summary: 'PCI controller 0'
                    },
                    key: 100
                  },
                  {
                    busNumber: 0,
                    classes: [
                      'VirtualSIOController',
                      'VirtualController',
                      'VirtualDevice'
                    ],
                    deviceInfo: {
                      label: 'SIO controller 0',
                      summary: 'SIO controller 0'
                    },
                    key: 400
                  },
                  {
                    classes: [
                      'VirtualKeyboard',
                      'VirtualDevice'
                    ],
                    controllerKey: 300,
                    deviceInfo: {
                      label: 'Keyboard',
                      summary: 'Keyboard'
                    },
                    key: 600,
                    unitNumber: 0
                  },
                  {
                    backing: {
                      deviceName: '',
                      hostPointingDevice: 'autodetect',
                      useAutoDetect: false
                    },
                    classes: [
                      'VirtualPointingDevice',
                      'VirtualDevice'
                    ],
                    controllerKey: 300,
                    deviceInfo: {
                      label: 'Pointing device',
                      summary: 'Pointing device; Device'
                    },
                    key: 700,
                    unitNumber: 1
                  },
                  {
                    classes: [
                      'VirtualMachineVideoCard',
                      'VirtualDevice'
                    ],
                    controllerKey: 100,
                    deviceInfo: {
                      label: 'Video card',
                      summary: 'Video card'
                    },
                    enable3DSupport: false,
                    key: 500,
                    numDisplays: 1,
                    unitNumber: 0,
                    use3dRenderer: 'automatic',
                    useAutoDetect: false,
                    videoRamSizeInKB: 4096
                  },
                  {
                    allowUnrestrictedCommunication: false,
                    classes: [
                      'VirtualMachineVMCIDevice',
                      'VirtualDevice'
                    ],
                    controllerKey: 100,
                    deviceInfo: {
                      label: 'VMCI device',
                      summary: 'Device on the virtual machine PCI bus that provides support for the virtual machine communication interface'
                    },
                    id: -1686707244,
                    key: 12000,
                    slotInfo: {
                      pciSlotNumber: 35
                    },
                    unitNumber: 17
                  },
                  {
                    autoConnectDevices: false,
                    busNumber: 0,
                    classes: [
                      'VirtualSCSIController',
                      'VirtualController',
                      'VirtualDevice'
                    ],
                    controllerKey: 100,
                    deviceInfo: {
                      label: 'USB controller',
                      summary: 'Auto connect Disabled'
                    },
                    ehciEnabled: true,
                    key: 7000,
                    slotInfo: {
                      ehciPciSlotNumber: 34,
                      pciSlotNumber: 32
                    },
                    unitNumber: 22
                  },
                  {
                    busNumber: 0,
                    classes: [
                      'VirtualLsiLogicController',
                      'VirtualSCSIController',
                      'VirtualController',
                      'VirtualDevice'
                    ],
                    controllerKey: 100,
                    device: [
                      2000
                    ],
                    deviceInfo: {
                      label: 'SCSI controller 0',
                      summary: 'LSI Logic'
                    },
                    hotAddRemove: true,
                    key: 1000,
                    scsiCtlrUnitNumber: 7,
                    sharedBus: 'noSharing',
                    slotInfo: {
                      pciSlotNumber: 16
                    },
                    unitNumber: 3
                  },
                  {
                    busNumber: 0,
                    classes: [
                      'VirtualAHCIController',
                      'VirtualSATAController',
                      'VirtualController',
                      'VirtualDevice'
                    ],
                    controllerKey: 100,
                    device: [
                      16000
                    ],
                    deviceInfo: {
                      label: 'SATA controller 0',
                      summary: 'AHCI'
                    },
                    key: 15000,
                    slotInfo: {
                      pciSlotNumber: 36
                    },
                    unitNumber: 24
                  },
                  {
                    backing: {
                      deviceName: '',
                      useAutoDetect: true
                    },
                    classes: [
                      'VirtualCdrom',
                      'VirtualDevice'
                    ],
                    connectable: {
                      allowGuestControl: true,
                      connected: false,
                      startConnected: false,
                      status: 'untried'
                    },
                    controllerKey: 15000,
                    deviceInfo: {
                      label: 'CD/DVD drive 1',
                      summary: 'ATAPI'
                    },
                    key: 16000,
                    unitNumber: 0
                  },
                  {
                    backing: {
                      backingObjectId: '67-2000-0',
                      contentId: '770cf6d341a9bfd1b9cb1f31fffffffe',
                      datastore: {
                        ref: '5bbc7c37-53db0a41-4f76-002219c963f1'
                      },
                      digestEnabled: false,
                      diskMode: 'persistent',
                      fileName: '[datastore1] rtyrtryt/rtyrtryt.vmdk',
                      split: false,
                      thinProvisioned: false,
                      uuid: '6000C299-f882-691b-62df-804616956157',
                      writeThrough: false
                    },
                    capacityInBytes: 8589934592,
                    capacityInKB: 8388608,
                    classes: [
                      'VirtualDisk',
                      'VirtualDevice'
                    ],
                    controllerKey: 1000,
                    deviceInfo: {
                      label: 'Hard disk 1',
                      summary: '8,388,608 KB'
                    },
                    diskObjectId: '67-2000',
                    key: 2000,
                    shares: {
                      level: 'normal',
                      shares: 1000
                    },
                    storageIOAllocation: {
                      limit: -1,
                      reservation: 0,
                      shares: {
                        level: 'normal',
                        shares: 1000
                      }
                    },
                    unitNumber: 0
                  },
                  {
                    addressType: 'generated',
                    backing: {
                      deviceName: 'VM Network',
                      network: {
                        ref: 'HaNetwork-VM Network'
                      },
                      useAutoDetect: false
                    },
                    classes: [
                      'VirtualE1000',
                      'VirtualEthernetCard',
                      'VirtualDevice'
                    ],
                    connectable: {
                      allowGuestControl: true,
                      connected: false,
                      startConnected: true,
                      status: 'untried'
                    },
                    controllerKey: 100,
                    deviceInfo: {
                      label: 'Network adapter 1',
                      summary: 'VM Network'
                    },
                    key: 4000,
                    macAddress: '00:0c:29:76:e3:d4',
                    slotInfo: {
                      pciSlotNumber: 33
                    },
                    unitNumber: 7,
                    wakeOnLanEnabled: false
                  }
                ],
                memoryMB: 512,
                numCPU: 1,
                numCoresPerSocket: 1,
                virtualICH7MPresent: false,
                virtualSMCPresent: false
              },
              hotPlugMemoryIncrementSize: 0,
              hotPlugMemoryLimit: 4096,
              instanceUuid: '5027be87-92f3-d5bf-96c9-0238ba9ec0e2',
              locationId: '564d57e5-ee4f-5962-1de4-fb369f928e2b',
              maxMksConnections: 40,
              memoryAllocation: {
                expandableReservation: false,
                limit: -1,
                reservation: 0,
                shares: {
                  level: 'normal',
                  shares: 40960
                }
              },
              memoryHotAddEnabled: false,
              memoryReservationLockedToMax: false,
              modified: new Date('1970-01-01T00:00:00.000Z'),
              name: 'es-002.stordata.dev',
              npivNodeWorldWideName: [],
              npivPortWorldWideName: [],
              npivTemporaryDisabled: true,
              swapPlacement: 'inherit',
              template: false,
              tools: {
                afterPowerOn: true,
                afterResume: true,
                beforeGuestShutdown: true,
                beforeGuestStandby: true,
                lastInstallInfo: {
                  counter: 1
                },
                syncTimeWithHost: false,
                toolsUpgradePolicy: 'manual',
                toolsVersion: 10336
              },
              uuid: '4227ce31-e061-26a9-e032-94d032cd77bd',
              vAssertsEnabled: false,
              version: 'vmx-14'
            },
            guest: {
              appHeartbeatStatus: 'appStatusGray',
              disk: [
                {
                  capacity: 31569383424,
                  diskPath: '/',
                  freeSpace: 21643538432
                },
                {
                  capacity: 210304475136,
                  diskPath: '/var/lib/elasticsearch',
                  freeSpace: 173069258752
                }
              ],
              guestFamily: 'linuxGuest',
              guestFullName: 'Ubuntu Linux (64-bit)',
              guestId: 'ubuntu64Guest',
              guestOperationsReady: true,
              guestState: 'running',
              hostName: 'es-002.stordata.dev',
              interactiveGuestOperationsReady: false,
              ipAddress: '10.78.7.224',
              ipStack: [
                {
                  dnsConfig: {
                    dhcp: false,
                    domainName: 'stordata.local',
                    hostName: 'es-002.stordata.dev',
                    ipAddress: [
                      '127.0.0.53'
                    ],
                    searchDomain: [
                      'stordata.local',
                      'stordata.dev',
                      'stordata.fr'
                    ]
                  },
                  ipRouteConfig: {
                    ipRoute: [
                      {
                        gateway: {
                          device: '1',
                          ipAddress: '10.78.7.254'
                        },
                        network: '0.0.0.0',
                        prefixLength: 0
                      },
                      {
                        gateway: {
                          device: '0',
                          ipAddress: '10.78.7.254'
                        },
                        network: '0.0.0.0',
                        prefixLength: 0
                      },
                      {
                        gateway: {
                          device: '1'
                        },
                        network: '10.78.7.0',
                        prefixLength: 24
                      },
                      {
                        gateway: {
                          device: '0'
                        },
                        network: '10.78.7.0',
                        prefixLength: 24
                      },
                      {
                        gateway: {
                          device: '1'
                        },
                        network: 'fe80::',
                        prefixLength: 64
                      },
                      {
                        gateway: {
                          device: '0'
                        },
                        network: 'fe80::',
                        prefixLength: 64
                      },
                      {
                        gateway: {
                          device: '0'
                        },
                        network: 'fe80::250:56ff:fea7:2260',
                        prefixLength: 128
                      },
                      {
                        gateway: {
                          device: '1'
                        },
                        network: 'fe80::250:56ff:fea7:86a4',
                        prefixLength: 128
                      },
                      {
                        gateway: {
                          device: '1'
                        },
                        network: 'ff00::',
                        prefixLength: 8
                      },
                      {
                        gateway: {
                          device: '0'
                        },
                        network: 'ff00::',
                        prefixLength: 8
                      }
                    ]
                  }
                }
              ],
              net: [
                {
                  connected: true,
                  deviceConfigId: 4000,
                  ipAddress: [
                    '10.78.7.224',
                    'fe80::250:56ff:fea7:2260'
                  ],
                  ipConfig: {
                    ipAddress: [
                      {
                        ipAddress: '10.78.7.224',
                        prefixLength: 24,
                        state: 'preferred'
                      },
                      {
                        ipAddress: 'fe80::250:56ff:fea7:2260',
                        prefixLength: 64,
                        state: 'unknown'
                      }
                    ]
                  },
                  macAddress: '00:50:56:a7:22:60',
                  network: 'VM Network'
                },
                {
                  connected: true,
                  deviceConfigId: 4001,
                  ipAddress: [
                    '10.78.7.228',
                    'fe80::250:56ff:fea7:86a4'
                  ],
                  ipConfig: {
                    ipAddress: [
                      {
                        ipAddress: '10.78.7.228',
                        prefixLength: 24,
                        state: 'preferred'
                      },
                      {
                        ipAddress: 'fe80::250:56ff:fea7:86a4',
                        prefixLength: 64,
                        state: 'unknown'
                      }
                    ]
                  },
                  macAddress: '00:50:56:a7:86:a4',
                  network: 'VM Network'
                }
              ],
              screen: {
                height: 600,
                width: 800
              },
              toolsRunningStatus: 'guestToolsRunning',
              toolsStatus: 'toolsOk',
              toolsVersion: '10336',
              toolsVersionStatus: 'guestToolsUnmanaged',
              toolsVersionStatus2: 'guestToolsUnmanaged'
            },
            ref: 'vm-114',
            runtime: {
              bootTime: new Date('2019-02-06T15:25:58.323Z'),
              connectionState: 'connected',
              consolidationNeeded: false,
              dasVmProtection: {
                dasProtected: true
              },
              faultToleranceState: 'notConfigured',
              maxCpuUsage: 4400,
              maxMemoryUsage: 4096,
              minRequiredEVCModeKey: 'intel-ivybridge',
              numMksConnections: 0,
              powerState: 'poweredOn',
              recordReplayState: 'inactive',
              suspendInterval: 0,
              toolsInstallerMounted: false
            },
            snapshot: {
              currentSnapshot: {
                ref: 'snapshot-828'
              },
              rootSnapshotList: [
                {
                  childSnapshotList: [
                    {
                      childSnapshotList: [
                        {
                          createTime: new Date('2019-06-24T14:18:56.621Z'),
                          description: 'bbbbbbbbbbbbbbbbbbbbbbbbbbb',
                          id: 3,
                          name: 'Snapshot de VM à 16:18:51',
                          quiesced: false,
                          replaySupported: false,
                          snapshot: {
                            ref: 'snapshot-828'
                          },
                          state: 'poweredOn',
                          vm: {
                            ref: 'vm-127'
                          }
                        }
                      ],
                      createTime: new Date('2019-06-24T14:17:46.466Z'),
                      description: 'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa',
                      id: 2,
                      name: 'Snapshot de VM à 16:17:33',
                      quiesced: false,
                      replaySupported: false,
                      snapshot: {
                        ref: 'snapshot-827'
                      },
                      state: 'poweredOn',
                      vm: {
                        ref: 'vm-127'
                      }
                    }
                  ],
                  createTime: new Date('2019-06-24T14:05:14.692Z'),
                  description: 'My second super great snapshot \\\\o/',
                  id: 1,
                  name: 'Snapshot by aba',
                  quiesced: false,
                  replaySupported: false,
                  snapshot: {
                    ref: 'snapshot-826'
                  },
                  state: 'poweredOn',
                  vm: {
                    ref: 'vm-127'
                  }
                }
              ],
              snapshotList: [
                {
                  createTime: new Date('2019-06-24T14:05:14.692Z'),
                  description: 'My second super great snapshot \\\\o/',
                  id: 1,
                  parent: undefined,
                  name: 'Snapshot by aba',
                  quiesced: false,
                  replaySupported: false,
                  snapshot: {
                    ref: 'snapshot-826'
                  },
                  state: 'poweredOn',
                  vm: {
                    ref: 'vm-127'
                  }
                },
                {
                  createTime: new Date('2019-06-24T14:17:46.466Z'),
                  description: 'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa',
                  id: 2,
                  name: 'Snapshot de VM à 16:17:33',
                  parent: 1,
                  quiesced: false,
                  replaySupported: false,
                  snapshot: {
                    ref: 'snapshot-827'
                  },
                  state: 'poweredOn',
                  vm: {
                    ref: 'vm-127'
                  }
                },
                {
                  createTime: new Date('2019-06-24T14:18:56.621Z'),
                  description: 'bbbbbbbbbbbbbbbbbbbbbbbbbbb',
                  id: 3,
                  name: 'Snapshot de VM à 16:18:51',
                  parent: 2,
                  quiesced: false,
                  replaySupported: false,
                  snapshot: {
                    ref: 'snapshot-828'
                  },
                  state: 'poweredOn',
                  vm: {
                    ref: 'vm-127'
                  }
                }
              ]
            },
            summary: {
              config: {
                annotation: undefined,
                cpuReservation: 0,
                guestFullName: 'Ubuntu Linux (64-bit)',
                guestId: 'ubuntu64Guest',
                installBootRequired: false,
                instanceUuid: '5027be87-92f3-d5bf-96c9-0238ba9ec0e2',
                memoryReservation: 0,
                memorySizeMB: 4096,
                name: 'es-002.stordata.dev',
                numCpu: 2,
                numEthernetCards: 2,
                numVirtualDisks: 2,
                template: false,
                uuid: '4227ce31-e061-26a9-e032-94d032cd77bd',
                vmPathName: '[Datastore02] es-002.stordata.dev/es-002.stordata.dev.vmx'
              },
              overallStatus: 'green',
              quickStats: {
                balloonedMemory: 0,
                compressedMemory: 0,
                consumedOverheadMemory: 36,
                distributedCpuEntitlement: 132,
                distributedMemoryEntitlement: 1774,
                ftLatencyStatus: 'gray',
                ftLogBandwidth: -1,
                ftSecondaryLatency: -1,
                guestHeartbeatStatus: 'green',
                guestMemoryUsage: 614,
                hostMemoryUsage: 4130,
                overallCpuDemand: 242,
                overallCpuUsage: 242,
                privateMemory: 4094,
                sharedMemory: 0,
                ssdSwappedMemory: 0,
                staticCpuEntitlement: 4400,
                staticMemoryEntitlement: 4350,
                swappedMemory: 0,
                uptimeSeconds: 8614257
              },
              storage: {
                committed: 251371675786,
                timestamp: new Date('2019-05-13T09:08:23.316Z'),
                uncommitted: 1022,
                unshared: 246960619520
              }
            }
          },
          {
            datastore: [
              {
                ref: 'datastore-29'
              }, {
                ref: 'datastore-30'
              }
            ],
            capability: {
              bootOptionsSupported: true,
              bootRetryOptionsSupported: true,
              changeTrackingSupported: true,
              consolePreferencesSupported: false,
              cpuFeatureMaskSupported: true,
              disableSnapshotsSupported: false,
              diskSharesSupported: true,
              guestAutoLockSupported: true,
              hostBasedReplicationSupported: true,
              lockSnapshotsSupported: true,
              memoryReservationLockSupported: true,
              memorySnapshotsSupported: true,
              multipleCoresPerSocketSupported: true,
              multipleSnapshotsSupported: true,
              npivWwnOnNonRdmVmSupported: true,
              poweredOffSnapshotsSupported: true,
              quiescedSnapshotsSupported: true,
              recordReplaySupported: false,
              revertToSnapshotSupported: true,
              s1AcpiManagementSupported: true,
              settingDisplayTopologySupported: false,
              settingScreenResolutionSupported: false,
              settingVideoRamSizeSupported: true,
              snapshotConfigSupported: true,
              snapshotOperationsSupported: true,
              swapPlacementSupported: true,
              toolsAutoUpdateSupported: false,
              toolsSyncTimeSupported: true,
              virtualMmuUsageSupported: false,
              vmNpivWwnDisableSupported: true,
              vmNpivWwnSupported: true,
              vmNpivWwnUpdateSupported: true
            },
            config: {
              alternateGuestName: undefined,
              annotation: undefined,
              changeTrackingEnabled: false,
              changeVersion: '2019-02-05T08:14:30.234697Z',
              cpuAllocation: {
                expandableReservation: false,
                limit: -1,
                reservation: 0,
                shares: {
                  level: 'normal',
                  shares: 2000
                }
              },
              cpuHotAddEnabled: false,
              cpuHotRemoveEnabled: false,
              datastoreUrl: [
                {
                  name: 'Datastore01',
                  url: '/vmfs/volumes/5c486628-a1e8f2a1-0c56-b8ca3a700cd4'
                },
                {
                  name: 'Datastore02',
                  url: '/vmfs/volumes/5c486636-ea036e5d-d6e0-b8ca3a700cd4'
                }
              ],
              extraConfig: {
                'ethernet0.pciSlotNumber': '160',
                'guestinfo.vmtools.buildNumber': '8931395',
                'guestinfo.vmtools.description': 'open-vm-tools 10.3.0 build 8931395',
                'guestinfo.vmtools.versionNumber': '10336',
                'guestinfo.vmtools.versionString': '10.3.0',
                'hpet0.present': 'TRUE',
                'migrate.hostLog': 'zabbix-001.stordata.dev-2cf6a10f.hlog',
                'migrate.hostLogState': 'none',
                'migrate.migrationId': '0',
                'monitor.phys_bits_used': '43',
                'numa.autosize.cookie': '20001',
                'numa.autosize.vcpu.maxPerVirtualNode': '2',
                nvram: 'zabbix-001.stordata.dev.nvram',
                'pciBridge0.pciSlotNumber': '17',
                'pciBridge0.present': 'TRUE',
                'pciBridge4.functions': '8',
                'pciBridge4.pciSlotNumber': '21',
                'pciBridge4.present': 'TRUE',
                'pciBridge4.virtualDev': 'pcieRootPort',
                'pciBridge5.functions': '8',
                'pciBridge5.pciSlotNumber': '22',
                'pciBridge5.present': 'TRUE',
                'pciBridge5.virtualDev': 'pcieRootPort',
                'pciBridge6.functions': '8',
                'pciBridge6.pciSlotNumber': '23',
                'pciBridge6.present': 'TRUE',
                'pciBridge6.virtualDev': 'pcieRootPort',
                'pciBridge7.functions': '8',
                'pciBridge7.pciSlotNumber': '24',
                'pciBridge7.present': 'TRUE',
                'pciBridge7.virtualDev': 'pcieRootPort',
                'sata0.pciSlotNumber': '33',
                'sched.cpu.latencySensitivity': 'normal',
                'sched.swap.derivedName': '/vmfs/volumes/5c486636-ea036e5d-d6e0-b8ca3a700cd4/zabbix-001.stordata.dev/zabbix-001.stordata.dev-e38d4b93.vswp',
                'scsi0.pciSlotNumber': '16',
                'scsi0:0.redo': undefined,
                softPowerOff: 'FALSE',
                'svga.guestBackedPrimaryAware': 'TRUE',
                'svga.present': 'TRUE',
                'tools.guest.desktop.autolock': 'FALSE',
                'toolsInstallManager.updateCounter': '1',
                'vmci0.pciSlotNumber': '32',
                'vmotion.checkpointFBSize': '4194304',
                'vmotion.checkpointSVGAPrimarySize': '4194304',
                'vmware.tools.internalversion': '10336',
                'vmware.tools.requiredversion': '10338'
              },
              firmware: 'bios',
              guestAutoLockEnabled: false,
              guestFullName: 'Ubuntu Linux (64-bit)',
              guestId: 'ubuntu64Guest',
              hotPlugMemoryIncrementSize: 0,
              hotPlugMemoryLimit: 4096,
              instanceUuid: '50274fe3-9eb2-0add-6205-b613484353e1',
              locationId: '564db18b-4a99-dea8-1d59-45caffac4e56',
              maxMksConnections: 40,
              memoryAllocation: {
                expandableReservation: false,
                limit: -1,
                reservation: 0,
                shares: {
                  level: 'normal',
                  shares: 40960
                }
              },
              memoryHotAddEnabled: false,
              memoryReservationLockedToMax: false,
              modified: new Date('1970-01-01T00:00:00.000Z'),
              name: 'zabbix-001.stordata.dev',
              npivNodeWorldWideName: [],
              npivPortWorldWideName: [],
              npivTemporaryDisabled: true,
              swapPlacement: 'inherit',
              template: false,
              tools: {
                afterPowerOn: true,
                afterResume: true,
                beforeGuestShutdown: true,
                beforeGuestStandby: true,
                lastInstallInfo: {
                  counter: 1
                },
                syncTimeWithHost: false,
                toolsUpgradePolicy: 'manual',
                toolsVersion: 10336
              },
              uuid: '42274b0a-4870-874a-4bb8-6202e5ef7afe',
              vAssertsEnabled: false,
              version: 'vmx-14'
            },
            guest: {
              appHeartbeatStatus: 'appStatusGray',
              disk: [
                {
                  capacity: 31569383424,
                  diskPath: '/',
                  freeSpace: 21083246592
                }
              ],
              guestFamily: 'linuxGuest',
              guestFullName: 'Ubuntu Linux (64-bit)',
              guestId: 'ubuntu64Guest',
              guestOperationsReady: true,
              guestState: 'running',
              hostName: 'zabbix-001.stordata.dev',
              interactiveGuestOperationsReady: false,
              ipAddress: '10.78.7.226',
              ipStack: [
                {
                  dnsConfig: {
                    dhcp: false,
                    domainName: 'stordata.local',
                    hostName: 'zabbix-001.stordata.dev',
                    ipAddress: [
                      '127.0.0.53'
                    ],
                    searchDomain: [
                      'stordata.local',
                      'stordata.dev',
                      'stordata.fr'
                    ]
                  },
                  ipRouteConfig: {
                    ipRoute: [
                      {
                        gateway: {
                          device: '0',
                          ipAddress: '10.78.7.254'
                        },
                        network: '0.0.0.0',
                        prefixLength: 0
                      },
                      {
                        gateway: {
                          device: '0'
                        },
                        network: '10.78.7.0',
                        prefixLength: 24
                      },
                      {
                        gateway: {
                          device: '0'
                        },
                        network: 'fe80::',
                        prefixLength: 64
                      },
                      {
                        gateway: {
                          device: '0'
                        },
                        network: 'fe80::250:56ff:fea7:681e',
                        prefixLength: 128
                      },
                      {
                        gateway: {
                          device: '0'
                        },
                        network: 'ff00::',
                        prefixLength: 8
                      }
                    ]
                  }
                }
              ],
              net: [
                {
                  connected: true,
                  deviceConfigId: 4000,
                  ipAddress: [
                    '10.78.7.226',
                    'fe80::250:56ff:fea7:681e'
                  ],
                  ipConfig: {
                    ipAddress: [
                      {
                        ipAddress: '10.78.7.226',
                        prefixLength: 24,
                        state: 'preferred'
                      },
                      {
                        ipAddress: 'fe80::250:56ff:fea7:681e',
                        prefixLength: 64,
                        state: 'unknown'
                      }
                    ]
                  },
                  macAddress: '00:50:56:a7:68:1e',
                  network: 'VM Network'
                }
              ],
              screen: {
                height: 600,
                width: 800
              },
              toolsRunningStatus: 'guestToolsRunning',
              toolsStatus: 'toolsOk',
              toolsVersion: '10336',
              toolsVersionStatus: 'guestToolsUnmanaged',
              toolsVersionStatus2: 'guestToolsUnmanaged'
            },
            ref: 'vm-112',
            runtime: {
              bootTime: new Date('2019-02-05T09:08:36.244Z'),
              connectionState: 'connected',
              consolidationNeeded: false,
              dasVmProtection: {
                dasProtected: true
              },
              faultToleranceState: 'notConfigured',
              maxCpuUsage: 4400,
              maxMemoryUsage: 4096,
              minRequiredEVCModeKey: 'intel-ivybridge',
              numMksConnections: 0,
              powerState: 'poweredOn',
              recordReplayState: 'inactive',
              suspendInterval: 0,
              toolsInstallerMounted: false
            },
            snapshot: {
              currentSnapshot: {
                ref: 'snapshot-825'
              },
              rootSnapshotList: [
                {
                  createTime: new Date('2019-06-24T14:04:33.344Z'),
                  description: 'My super snapshot youhou \\\\o/',
                  id: 1,
                  name: 'Snapshot test by aba',
                  quiesced: false,
                  replaySupported: false,
                  snapshot: {
                    ref: 'snapshot-825'
                  },
                  state: 'poweredOn',
                  vm: {
                    ref: 'vm-121'
                  }
                }
              ],
              snapshotList: [
                {
                  createTime: new Date('2019-06-24T14:04:33.344Z'),
                  description: 'My super snapshot youhou \\\\o/',
                  id: 1,
                  parent: undefined,
                  name: 'Snapshot test by aba',
                  quiesced: false,
                  replaySupported: false,
                  snapshot: {
                    ref: 'snapshot-825'
                  },
                  state: 'poweredOn',
                  vm: {
                    ref: 'vm-121'
                  }
                }
              ]
            },
            summary: {
              config: {
                annotation: undefined,
                cpuReservation: 0,
                guestFullName: 'Ubuntu Linux (64-bit)',
                guestId: 'ubuntu64Guest',
                installBootRequired: false,
                instanceUuid: '50274fe3-9eb2-0add-6205-b613484353e1',
                memoryReservation: 0,
                memorySizeMB: 4096,
                name: 'zabbix-001.stordata.dev',
                numCpu: 2,
                numEthernetCards: 1,
                numVirtualDisks: 1,
                template: false,
                uuid: '42274b0a-4870-874a-4bb8-6202e5ef7afe',
                vmPathName: '[Datastore02] zabbix-001.stordata.dev/zabbix-001.stordata.dev.vmx'
              },
              overallStatus: 'green',
              quickStats: {
                balloonedMemory: 0,
                compressedMemory: 0,
                consumedOverheadMemory: 38,
                distributedCpuEntitlement: 44,
                distributedMemoryEntitlement: 1436,
                ftLatencyStatus: 'gray',
                ftLogBandwidth: -1,
                ftSecondaryLatency: -1,
                guestHeartbeatStatus: 'green',
                guestMemoryUsage: 245,
                hostMemoryUsage: 4132,
                overallCpuDemand: 44,
                overallCpuUsage: 44,
                privateMemory: 4094,
                sharedMemory: 0,
                ssdSwappedMemory: 0,
                staticCpuEntitlement: 4400,
                staticMemoryEntitlement: 4350,
                swappedMemory: 0,
                uptimeSeconds: 8723296
              },
              storage: {
                committed: 36622808901,
                timestamp: new Date('2019-05-13T09:08:23.281Z'),
                uncommitted: 540,
                unshared: 32212254720
              }
            }
          }
        ]);
      });
    });

    it('should scroll results until collection is complete', function() {
      this.mockSoapOperation('5.5', 'RetrieveServiceContent');
      this.mockSoapOperation('5.5', 'getVirtualMachines/partialWithScrolling/CreateContainerView');
      this.mockSoapOperation('5.5', 'getVirtualMachines/partialWithScrolling/RetrievePropertiesEx');
      this.mockSoapOperation('5.5', 'getVirtualMachines/partialWithScrolling/ContinueRetrievePropertiesEx');

      return client.getVirtualMachines(['name']).then((vms) => {
        expect(vms).to.deep.equal([
          {
            name: 'MPE_EncryptVM01',
            ref: 'vm-1404'
          },
          {
            name: 'DDV_Linux_069',
            ref: 'vm-1146'
          },
          {
            name: 'DDV_Linux_103',
            ref: 'vm-1330'
          },
          {
            name: 'DDV_Linux_126',
            ref: 'vm-1162'
          },
          {
            name: 'DDV_Linux_043',
            ref: 'vm-1238'
          },
          {
            name: 'DDV_Linux_111',
            ref: 'vm-1274'
          },
          {
            name: 'DDV_Linux_040',
            ref: 'vm-1322'
          },
          {
            name: 'DDV_Linux_116',
            ref: 'vm-1206'
          },
          {
            name: 'DDV_Linux_079',
            ref: 'vm-1138'
          },
          {
            name: 'DDV_Linux_024',
            ref: 'vm-1386'
          },
          {
            name: 'MPE_ClearVM_Win',
            ref: 'vm-845'
          },
          {
            name: 'DDV_Linux_107',
            ref: 'vm-1284'
          },
          {
            name: 'tmpl_Windows_2016',
            ref: 'vm-834'
          },
          {
            name: 'MPE_EncryptVM_Win',
            ref: 'vm-844'
          },
          {
            name: 'TESTJU-01',
            ref: 'vm-74'
          },
          {
            name: 'DDV_Linux_098',
            ref: 'vm-1234'
          },
          {
            name: 'DDV_Linux_081',
            ref: 'vm-1210'
          },
          {
            name: 'Vormetric-VTE',
            ref: 'vm-833'
          },
          {
            name: 'Vormetric-DSM',
            ref: 'vm-832'
          },
          {
            name: 'DDV_Linux_025',
            ref: 'vm-1116'
          },
          {
            name: 'DDV_Linux_044',
            ref: 'vm-1122'
          },
          {
            name: 'DDV_Linux_104',
            ref: 'vm-1288'
          },
          {
            name: 'DDV_Linux_051',
            ref: 'vm-1368'
          },
          {
            name: 'DDV_Linux_061',
            ref: 'vm-1228'
          },
          {
            name: 'DDV_Linux_022',
            ref: 'vm-1154'
          },
          {
            name: 'DDV_Linux_053',
            ref: 'vm-1140'
          },
          {
            name: 'DDV_Linux_007',
            ref: 'vm-1126'
          },
          {
            name: 'DDV_Linux_092',
            ref: 'vm-1356'
          },
          {
            name: 'DDV_Linux_095',
            ref: 'vm-1350'
          },
          {
            name: 'DDV_Linux_102',
            ref: 'vm-1148'
          },
          {
            name: 'DDV_Linux_105',
            ref: 'vm-1168'
          },
          {
            name: 'DDV_Linux_133',
            ref: 'vm-1172'
          },
          {
            name: 'DDV_Linux_034',
            ref: 'vm-1246'
          },
          {
            name: 'DDV_Linux_090',
            ref: 'vm-1190'
          },
          {
            name: 'DDV_Linux_014',
            ref: 'vm-1266'
          },
          {
            name: 'DDV_Linux_120',
            ref: 'vm-1196'
          },
          {
            name: 'DDV_Linux_148',
            ref: 'vm-1392'
          },
          {
            name: 'DDV_Linux_137',
            ref: 'vm-1214'
          },
          {
            name: 'DDV_Linux_117',
            ref: 'vm-1218'
          },
          {
            name: 'DDV_Linux_118',
            ref: 'vm-1222'
          },
          {
            name: 'clscohesitynode1',
            ref: 'vm-56'
          },
          {
            name: 'DDV_Linux_128',
            ref: 'vm-1226'
          },
          {
            name: 'DDV_Linux_012',
            ref: 'vm-1262'
          },
          {
            name: 'DDV_Linux_015',
            ref: 'vm-1248'
          },
          {
            name: 'DDV_Linux_018',
            ref: 'vm-1158'
          },
          {
            name: 'DDV_Linux_065',
            ref: 'vm-1252'
          },
          {
            name: 'DDV_Linux_094',
            ref: 'vm-1256'
          },
          {
            name: 'DDV_Linux_112',
            ref: 'vm-1268'
          },
          {
            name: 'DDV_Linux_055',
            ref: 'vm-1278'
          },
          {
            name: 'DDV_Linux_145',
            ref: 'vm-1280'
          },
          {
            name: 'MPE_vSphereEncryptVM-on-vVol',
            ref: 'vm-850'
          },
          {
            name: 'DDV_Linux_146',
            ref: 'vm-1178'
          },
          {
            name: 'DDV_Linux_074',
            ref: 'vm-1344'
          },
          {
            name: 'DDV_Linux_147',
            ref: 'vm-1378'
          },
          {
            name: 'DDV_Linux_039',
            ref: 'vm-1128'
          },
          {
            name: 'DDV_Linux_031',
            ref: 'vm-1240'
          },
          {
            name: 'DDV_Linux_084',
            ref: 'vm-1298'
          },
          {
            name: 'DDV_Linux_071',
            ref: 'vm-1310'
          },
          {
            name: 'DDV_Linux_122',
            ref: 'vm-1312'
          },
          {
            name: 'DDV_Linux_115',
            ref: 'vm-1180'
          },
          {
            name: 'DDV_Linux_134',
            ref: 'vm-1324'
          },
          {
            name: 'DDV_Linux_083',
            ref: 'vm-1166'
          },
          {
            name: 'DDV_Linux_036',
            ref: 'vm-1334'
          },
          {
            name: 'DDV_Linux_045',
            ref: 'vm-1402'
          },
          {
            name: 'DDV_Linux_132',
            ref: 'vm-1318'
          },
          {
            name: 'DDV_Linux_070',
            ref: 'vm-1336'
          },
          {
            name: 'DDV_Linux_048',
            ref: 'vm-1354'
          },
          {
            name: 'DDV_Linux_129',
            ref: 'vm-1364'
          },
          {
            name: 'DDV_Linux_006',
            ref: 'vm-1194'
          },
          {
            name: 'DDV_Linux_140',
            ref: 'vm-1374'
          },
          {
            name: 'DDV_Linux_125',
            ref: 'vm-1380'
          },
          {
            name: 'DDV_Linux_054',
            ref: 'vm-1390'
          },
          {
            name: 'DDV_Linux_023',
            ref: 'vm-1396'
          },
          {
            name: 'DDV_Linux_047',
            ref: 'vm-1398'
          },
          {
            name: 'DDV_Linux_027',
            ref: 'vm-1184'
          },
          {
            name: 'DDV_Linux_138',
            ref: 'vm-1202'
          },
          {
            name: 'DDV_Linux_088',
            ref: 'vm-1342'
          },
          {
            name: 'DDV_Linux_119',
            ref: 'vm-1292'
          },
          {
            name: 'DDV_Linux_136',
            ref: 'vm-1300'
          },
          {
            name: 'DDV_Linux_082',
            ref: 'vm-1306'
          },
          {
            name: 'DDV_Linux_096',
            ref: 'vm-1362'
          },
          {
            name: 'DDV_Linux_057',
            ref: 'vm-1134'
          },
          {
            name: 'DDV_Linux_058',
            ref: 'vm-1230'
          },
          {
            name: 'DDV_Linux_067',
            ref: 'vm-1182'
          },
          {
            name: 'DDV_Linux_097',
            ref: 'vm-1290'
          },
          {
            name: 'DDV_Linux_101',
            ref: 'vm-1282'
          },
          {
            name: 'DDV_Linux_028',
            ref: 'vm-1338'
          },
          {
            name: 'DDV_Linux_020',
            ref: 'vm-1366'
          },
          {
            name: 'DDV_Linux_004',
            ref: 'vm-1254'
          },
          {
            name: 'DDV_Linux_114',
            ref: 'vm-1198'
          },
          {
            name: 'DDV_Linux_029',
            ref: 'vm-1394'
          },
          {
            name: 'DDV_Linux_106',
            ref: 'vm-1370'
          },
          {
            name: 'DDV_Linux_073',
            ref: 'vm-1286'
          },
          {
            name: 'DDV_Linux_100',
            ref: 'vm-1174'
          },
          {
            name: 'DDV_Linux_056',
            ref: 'vm-1250'
          },
          {
            name: 'DDV_Linux_001',
            ref: 'vm-1104'
          },
          {
            name: 'DDV_Linux_005',
            ref: 'vm-1110'
          },
          {
            name: 'DDV_Linux_035',
            ref: 'vm-1400'
          },
          {
            name: 'DDV_Linux_021',
            ref: 'vm-1388'
          },
          {
            name: 'DDV_Linux_086',
            ref: 'vm-1372'
          },
          {
            name: 'DDV_Linux_150',
            ref: 'vm-1360'
          },
          {
            name: 'DDV_Linux_030',
            ref: 'vm-1118'
          },
          {
            name: 'DDV_Linux_143',
            ref: 'vm-1348'
          },
          {
            name: 'DDV_Linux_041',
            ref: 'vm-1142'
          },
          {
            name: 'DDV_Linux_109',
            ref: 'vm-1346'
          },
          {
            name: 'DDV_Linux_144',
            ref: 'vm-1332'
          },
          {
            name: 'DDV_Linux_091',
            ref: 'vm-1328'
          },
          {
            name: 'DDV_Linux_080',
            ref: 'vm-1320'
          },
          {
            name: 'DDV_Linux_066',
            ref: 'vm-1308'
          },
          {
            name: 'DDV_Linux_142',
            ref: 'vm-1304'
          },
          {
            name: 'DDV_Linux_059',
            ref: 'vm-1296'
          },
          {
            name: 'DDV_Linux_089',
            ref: 'vm-1294'
          },
          {
            name: 'DDV_Linux_060',
            ref: 'vm-1384'
          },
          {
            name: 'DDV_Linux_139',
            ref: 'vm-1326'
          },
          {
            name: 'DDV_Linux_068',
            ref: 'vm-1264'
          },
          {
            name: 'DDV_Linux_038',
            ref: 'vm-1260'
          },
          {
            name: 'DDV_Linux_113',
            ref: 'vm-1258'
          },
          {
            name: 'DDV_Linux_124',
            ref: 'vm-1244'
          },
          {
            name: 'DDV_Linux_011',
            ref: 'vm-1108'
          },
          {
            name: 'DDV_Linux_149',
            ref: 'vm-1352'
          },
          {
            name: 'DDV_Linux_135',
            ref: 'vm-1236'
          },
          {
            name: 'DDV_Linux_108',
            ref: 'vm-1272'
          },
          {
            name: 'DDV_Linux_063',
            ref: 'vm-1232'
          },
          {
            name: 'DDV_Linux_141',
            ref: 'vm-1302'
          },
          {
            name: 'DDV_Linux_016',
            ref: 'vm-1224'
          },
          {
            name: 'DDV_Linux_099',
            ref: 'vm-1216'
          },
          {
            name: 'DDV_Linux_123',
            ref: 'vm-1212'
          },
          {
            name: 'DDV_Linux_072',
            ref: 'vm-1242'
          },
          {
            name: 'DDV_Linux_017',
            ref: 'vm-1276'
          },
          {
            name: 'DDV_Linux_042',
            ref: 'vm-1208'
          },
          {
            name: 'DDV_Linux_131',
            ref: 'vm-1220'
          },
          {
            name: 'DDV_Linux_013',
            ref: 'vm-1204'
          },
          {
            name: 'DDV_Linux_008',
            ref: 'vm-1376'
          },
          {
            name: 'DDV_Linux_121',
            ref: 'vm-1200'
          },
          {
            name: 'DDV_Linux_002',
            ref: 'vm-1192'
          },
          {
            name: 'DDV_Linux_076',
            ref: 'vm-1188'
          },
          {
            name: 'DDV_Linux_049',
            ref: 'vm-1270'
          },
          {
            name: 'DDV_Linux_046',
            ref: 'vm-1176'
          },
          {
            name: 'DDV_Linux_093',
            ref: 'vm-1150'
          },
          {
            name: 'DDV_Linux_052',
            ref: 'vm-1170'
          },
          {
            name: 'DDV_Linux_026',
            ref: 'vm-1164'
          },
          {
            name: 'DDV_Linux_075',
            ref: 'vm-1382'
          },
          {
            name: 'DDV_Linux_130',
            ref: 'vm-1358'
          },
          {
            name: 'DDV_Linux_032',
            ref: 'vm-1156'
          },
          {
            name: 'DDV_Linux_077',
            ref: 'vm-1340'
          },
          {
            name: 'DDV_Linux_078',
            ref: 'vm-1152'
          },
          {
            name: 'DDV_Linux_087',
            ref: 'vm-1144'
          },
          {
            name: 'DDV_Linux_062',
            ref: 'vm-1136'
          },
          {
            name: 'DDV_Linux_085',
            ref: 'vm-1314'
          },
          {
            name: 'DDV_Linux_064',
            ref: 'vm-1132'
          },
          {
            name: 'DDV_Linux_033',
            ref: 'vm-1130'
          },
          {
            name: 'DDV_Linux_009',
            ref: 'vm-1124'
          },
          {
            name: 'DDV_Linux_037',
            ref: 'vm-1120'
          },
          {
            name: 'DDV_Linux_010',
            ref: 'vm-1114'
          },
          {
            name: 'DDV_Linux_050',
            ref: 'vm-1186'
          },
          {
            name: 'DDV_Linux_019',
            ref: 'vm-1112'
          },
          {
            name: 'DDV_Linux_003',
            ref: 'vm-1106'
          },
          {
            name: 'vCenter-Server-Appliance',
            ref: 'vm-14'
          },
          {
            name: 'test centos6',
            ref: 'vm-838'
          },
          {
            name: 'TMPL_centos7',
            ref: 'vm-831'
          },
          {
            name: 'NetApp-Management-Node-01',
            ref: 'vm-29'
          },
          {
            name: 'DDV_Linux_127',
            ref: 'vm-1316'
          },
          {
            name: 'DDV_Linux_110',
            ref: 'vm-1160'
          },
          {
            name: 'DSM',
            ref: 'vm-843'
          },
          {
            name: 'MPE_PoC-Vormetric_Rebond',
            ref: 'vm-839'
          },
          {
            name: 'TMPL_W2K16',
            ref: 'vm-835'
          }
        ]);
      });
    });

    it('should scroll results until collection is complete, when multiple chunks are available', function() {
      this.mockSoapOperation('5.5', 'RetrieveServiceContent');
      this.mockSoapOperation('5.5', 'getVirtualMachines/partialWithScrolling/CreateContainerView');
      this.mockSoapOperation('5.5', 'getVirtualMachines/partialWithScrolling/RetrievePropertiesEx_3Chunks');
      this.mockSoapOperation('5.5', 'getVirtualMachines/partialWithScrolling/ContinueRetrievePropertiesEx_1');
      this.mockSoapOperation('5.5', 'getVirtualMachines/partialWithScrolling/ContinueRetrievePropertiesEx_2');
      this.mockSoapOperation('5.5', 'getVirtualMachines/partialWithScrolling/ContinueRetrievePropertiesEx_3');

      return client.getVirtualMachines(['name']).then((vms) => {
        expect(vms).to.deep.equal([
          {
            name: 'MPE_EncryptVM01',
            ref: 'vm-1404'
          },
          {
            name: 'DDV_Linux_069',
            ref: 'vm-1146'
          },
          {
            name: 'DDV_Linux_103',
            ref: 'vm-1330'
          },
          {
            name: 'DDV_Linux_126',
            ref: 'vm-1162'
          },
          {
            name: 'DDV_Linux_043',
            ref: 'vm-1238'
          },
          {
            name: 'DDV_Linux_111',
            ref: 'vm-1274'
          },
          {
            name: 'DDV_Linux_040',
            ref: 'vm-1322'
          },
          {
            name: 'DDV_Linux_116',
            ref: 'vm-1206'
          },
          {
            name: 'DDV_Linux_079',
            ref: 'vm-1138'
          },
          {
            name: 'DDV_Linux_024',
            ref: 'vm-1386'
          },
          {
            name: 'MPE_ClearVM_Win',
            ref: 'vm-845'
          },
          {
            name: 'DDV_Linux_107',
            ref: 'vm-1284'
          },
          {
            name: 'tmpl_Windows_2016',
            ref: 'vm-834'
          },
          {
            name: 'MPE_EncryptVM_Win',
            ref: 'vm-844'
          },
          {
            name: 'TESTJU-01',
            ref: 'vm-74'
          },
          {
            name: 'DDV_Linux_098',
            ref: 'vm-1234'
          },
          {
            name: 'DDV_Linux_081',
            ref: 'vm-1210'
          },
          {
            name: 'Vormetric-VTE',
            ref: 'vm-833'
          },
          {
            name: 'Vormetric-DSM',
            ref: 'vm-832'
          },
          {
            name: 'DDV_Linux_025',
            ref: 'vm-1116'
          },
          {
            name: 'DDV_Linux_044',
            ref: 'vm-1122'
          },
          {
            name: 'DDV_Linux_104',
            ref: 'vm-1288'
          },
          {
            name: 'DDV_Linux_051',
            ref: 'vm-1368'
          },
          {
            name: 'DDV_Linux_061',
            ref: 'vm-1228'
          },
          {
            name: 'DDV_Linux_022',
            ref: 'vm-1154'
          },
          {
            name: 'DDV_Linux_053',
            ref: 'vm-1140'
          },
          {
            name: 'DDV_Linux_007',
            ref: 'vm-1126'
          },
          {
            name: 'DDV_Linux_092',
            ref: 'vm-1356'
          },
          {
            name: 'DDV_Linux_095',
            ref: 'vm-1350'
          },
          {
            name: 'DDV_Linux_102',
            ref: 'vm-1148'
          },
          {
            name: 'DDV_Linux_105',
            ref: 'vm-1168'
          },
          {
            name: 'DDV_Linux_133',
            ref: 'vm-1172'
          },
          {
            name: 'DDV_Linux_034',
            ref: 'vm-1246'
          },
          {
            name: 'DDV_Linux_090',
            ref: 'vm-1190'
          },
          {
            name: 'DDV_Linux_014',
            ref: 'vm-1266'
          },
          {
            name: 'DDV_Linux_120',
            ref: 'vm-1196'
          },
          {
            name: 'DDV_Linux_148',
            ref: 'vm-1392'
          },
          {
            name: 'DDV_Linux_137',
            ref: 'vm-1214'
          },
          {
            name: 'DDV_Linux_117',
            ref: 'vm-1218'
          },
          {
            name: 'DDV_Linux_118',
            ref: 'vm-1222'
          },
          {
            name: 'clscohesitynode1',
            ref: 'vm-56'
          },
          {
            name: 'DDV_Linux_128',
            ref: 'vm-1226'
          },
          {
            name: 'DDV_Linux_012',
            ref: 'vm-1262'
          },
          {
            name: 'DDV_Linux_015',
            ref: 'vm-1248'
          },
          {
            name: 'DDV_Linux_018',
            ref: 'vm-1158'
          },
          {
            name: 'DDV_Linux_065',
            ref: 'vm-1252'
          },
          {
            name: 'DDV_Linux_094',
            ref: 'vm-1256'
          },
          {
            name: 'DDV_Linux_112',
            ref: 'vm-1268'
          },
          {
            name: 'DDV_Linux_055',
            ref: 'vm-1278'
          },
          {
            name: 'DDV_Linux_145',
            ref: 'vm-1280'
          },
          {
            name: 'MPE_vSphereEncryptVM-on-vVol',
            ref: 'vm-850'
          },
          {
            name: 'DDV_Linux_146',
            ref: 'vm-1178'
          },
          {
            name: 'DDV_Linux_074',
            ref: 'vm-1344'
          },
          {
            name: 'DDV_Linux_147',
            ref: 'vm-1378'
          },
          {
            name: 'DDV_Linux_039',
            ref: 'vm-1128'
          },
          {
            name: 'DDV_Linux_031',
            ref: 'vm-1240'
          },
          {
            name: 'DDV_Linux_084',
            ref: 'vm-1298'
          },
          {
            name: 'DDV_Linux_071',
            ref: 'vm-1310'
          },
          {
            name: 'DDV_Linux_122',
            ref: 'vm-1312'
          },
          {
            name: 'DDV_Linux_115',
            ref: 'vm-1180'
          },
          {
            name: 'DDV_Linux_134',
            ref: 'vm-1324'
          },
          {
            name: 'DDV_Linux_083',
            ref: 'vm-1166'
          },
          {
            name: 'DDV_Linux_036',
            ref: 'vm-1334'
          },
          {
            name: 'DDV_Linux_045',
            ref: 'vm-1402'
          },
          {
            name: 'DDV_Linux_132',
            ref: 'vm-1318'
          },
          {
            name: 'DDV_Linux_070',
            ref: 'vm-1336'
          },
          {
            name: 'DDV_Linux_048',
            ref: 'vm-1354'
          },
          {
            name: 'DDV_Linux_129',
            ref: 'vm-1364'
          },
          {
            name: 'DDV_Linux_006',
            ref: 'vm-1194'
          },
          {
            name: 'DDV_Linux_140',
            ref: 'vm-1374'
          },
          {
            name: 'DDV_Linux_125',
            ref: 'vm-1380'
          },
          {
            name: 'DDV_Linux_054',
            ref: 'vm-1390'
          },
          {
            name: 'DDV_Linux_023',
            ref: 'vm-1396'
          },
          {
            name: 'DDV_Linux_047',
            ref: 'vm-1398'
          },
          {
            name: 'DDV_Linux_027',
            ref: 'vm-1184'
          },
          {
            name: 'DDV_Linux_138',
            ref: 'vm-1202'
          },
          {
            name: 'DDV_Linux_088',
            ref: 'vm-1342'
          },
          {
            name: 'DDV_Linux_119',
            ref: 'vm-1292'
          },
          {
            name: 'DDV_Linux_136',
            ref: 'vm-1300'
          },
          {
            name: 'DDV_Linux_082',
            ref: 'vm-1306'
          },
          {
            name: 'DDV_Linux_096',
            ref: 'vm-1362'
          },
          {
            name: 'DDV_Linux_057',
            ref: 'vm-1134'
          },
          {
            name: 'DDV_Linux_058',
            ref: 'vm-1230'
          },
          {
            name: 'DDV_Linux_067',
            ref: 'vm-1182'
          },
          {
            name: 'DDV_Linux_097',
            ref: 'vm-1290'
          },
          {
            name: 'DDV_Linux_101',
            ref: 'vm-1282'
          },
          {
            name: 'DDV_Linux_028',
            ref: 'vm-1338'
          },
          {
            name: 'DDV_Linux_020',
            ref: 'vm-1366'
          },
          {
            name: 'DDV_Linux_004',
            ref: 'vm-1254'
          },
          {
            name: 'DDV_Linux_114',
            ref: 'vm-1198'
          },
          {
            name: 'DDV_Linux_029',
            ref: 'vm-1394'
          },
          {
            name: 'DDV_Linux_106',
            ref: 'vm-1370'
          },
          {
            name: 'DDV_Linux_073',
            ref: 'vm-1286'
          },
          {
            name: 'DDV_Linux_100',
            ref: 'vm-1174'
          },
          {
            name: 'DDV_Linux_056',
            ref: 'vm-1250'
          },
          {
            name: 'DDV_Linux_001',
            ref: 'vm-1104'
          },
          {
            name: 'DDV_Linux_005',
            ref: 'vm-1110'
          },
          {
            name: 'DDV_Linux_035',
            ref: 'vm-1400'
          },
          {
            name: 'DDV_Linux_021',
            ref: 'vm-1388'
          },
          {
            name: 'DDV_Linux_086',
            ref: 'vm-1372'
          },
          {
            name: 'DDV_Linux_150',
            ref: 'vm-1360'
          },
          {
            name: 'DDV_Linux_030',
            ref: 'vm-1118'
          },
          {
            name: 'DDV_Linux_143',
            ref: 'vm-1348'
          },
          {
            name: 'DDV_Linux_041',
            ref: 'vm-1142'
          },
          {
            name: 'DDV_Linux_109',
            ref: 'vm-1346'
          },
          {
            name: 'DDV_Linux_144',
            ref: 'vm-1332'
          },
          {
            name: 'DDV_Linux_091',
            ref: 'vm-1328'
          },
          {
            name: 'DDV_Linux_080',
            ref: 'vm-1320'
          },
          {
            name: 'DDV_Linux_066',
            ref: 'vm-1308'
          },
          {
            name: 'DDV_Linux_142',
            ref: 'vm-1304'
          },
          {
            name: 'DDV_Linux_059',
            ref: 'vm-1296'
          },
          {
            name: 'DDV_Linux_089',
            ref: 'vm-1294'
          },
          {
            name: 'DDV_Linux_060',
            ref: 'vm-1384'
          },
          {
            name: 'DDV_Linux_139',
            ref: 'vm-1326'
          },
          {
            name: 'DDV_Linux_068',
            ref: 'vm-1264'
          },
          {
            name: 'DDV_Linux_038',
            ref: 'vm-1260'
          },
          {
            name: 'DDV_Linux_113',
            ref: 'vm-1258'
          },
          {
            name: 'DDV_Linux_124',
            ref: 'vm-1244'
          },
          {
            name: 'DDV_Linux_011',
            ref: 'vm-1108'
          },
          {
            name: 'DDV_Linux_149',
            ref: 'vm-1352'
          },
          {
            name: 'DDV_Linux_135',
            ref: 'vm-1236'
          },
          {
            name: 'DDV_Linux_108',
            ref: 'vm-1272'
          },
          {
            name: 'DDV_Linux_063',
            ref: 'vm-1232'
          },
          {
            name: 'DDV_Linux_141',
            ref: 'vm-1302'
          },
          {
            name: 'DDV_Linux_016',
            ref: 'vm-1224'
          },
          {
            name: 'DDV_Linux_099',
            ref: 'vm-1216'
          },
          {
            name: 'DDV_Linux_123',
            ref: 'vm-1212'
          },
          {
            name: 'DDV_Linux_072',
            ref: 'vm-1242'
          },
          {
            name: 'DDV_Linux_017',
            ref: 'vm-1276'
          },
          {
            name: 'DDV_Linux_042',
            ref: 'vm-1208'
          },
          {
            name: 'DDV_Linux_131',
            ref: 'vm-1220'
          },
          {
            name: 'DDV_Linux_013',
            ref: 'vm-1204'
          },
          {
            name: 'DDV_Linux_008',
            ref: 'vm-1376'
          },
          {
            name: 'DDV_Linux_121',
            ref: 'vm-1200'
          },
          {
            name: 'DDV_Linux_002',
            ref: 'vm-1192'
          },
          {
            name: 'DDV_Linux_076',
            ref: 'vm-1188'
          },
          {
            name: 'DDV_Linux_049',
            ref: 'vm-1270'
          },
          {
            name: 'DDV_Linux_046',
            ref: 'vm-1176'
          },
          {
            name: 'DDV_Linux_093',
            ref: 'vm-1150'
          },
          {
            name: 'DDV_Linux_052',
            ref: 'vm-1170'
          },
          {
            name: 'DDV_Linux_026',
            ref: 'vm-1164'
          },
          {
            name: 'DDV_Linux_075',
            ref: 'vm-1382'
          },
          {
            name: 'DDV_Linux_130',
            ref: 'vm-1358'
          },
          {
            name: 'DDV_Linux_032',
            ref: 'vm-1156'
          },
          {
            name: 'DDV_Linux_077',
            ref: 'vm-1340'
          },
          {
            name: 'DDV_Linux_078',
            ref: 'vm-1152'
          },
          {
            name: 'DDV_Linux_087',
            ref: 'vm-1144'
          },
          {
            name: 'DDV_Linux_062',
            ref: 'vm-1136'
          },
          {
            name: 'DDV_Linux_085',
            ref: 'vm-1314'
          },
          {
            name: 'DDV_Linux_064',
            ref: 'vm-1132'
          },
          {
            name: 'DDV_Linux_033',
            ref: 'vm-1130'
          },
          {
            name: 'DDV_Linux_009',
            ref: 'vm-1124'
          },
          {
            name: 'DDV_Linux_037',
            ref: 'vm-1120'
          },
          {
            name: 'DDV_Linux_010',
            ref: 'vm-1114'
          },
          {
            name: 'DDV_Linux_050',
            ref: 'vm-1186'
          },
          {
            name: 'DDV_Linux_019',
            ref: 'vm-1112'
          },
          {
            name: 'DDV_Linux_003',
            ref: 'vm-1106'
          },
          {
            name: 'vCenter-Server-Appliance',
            ref: 'vm-14'
          },
          {
            name: 'test centos6',
            ref: 'vm-838'
          },
          {
            name: 'TMPL_centos7',
            ref: 'vm-831'
          },
          {
            name: 'NetApp-Management-Node-01',
            ref: 'vm-29'
          },
          {
            name: 'DDV_Linux_127',
            ref: 'vm-1316'
          },
          {
            name: 'DDV_Linux_110',
            ref: 'vm-1160'
          },
          {
            name: 'DSM',
            ref: 'vm-843'
          },
          {
            name: 'MPE_PoC-Vormetric_Rebond',
            ref: 'vm-839'
          },
          {
            name: 'TMPL_W2K16',
            ref: 'vm-835'
          }
        ]);
      });
    });

  });

  describe('The getDatacenters method', function() {

    it('should return an array of Datacenter instances, when queried with a set of properties', function() {
      this.mockSoapOperation('5.5', 'RetrieveServiceContent');
      this.mockSoapOperation('5.5', 'getDatacenters/full/CreateContainerView');
      this.mockSoapOperation('5.5', 'getDatacenters/full/RetrievePropertiesEx');

      return client.getDatacenters().then((dcs) => {
        expect(dcs).to.deep.equal([
          {
            configStatus: 'gray',
            datastore: [
              {
                ref: 'datastore-29'
              },
              {
                ref: 'datastore-30'
              }
            ],
            datastoreFolder: {
              ref: 'group-s24'
            },
            hostFolder: {
              ref: 'group-h23'
            },
            name: 'Stordata_dev',
            network: [
              {
                ref: 'network-31'
              },
              {
                ref: 'dvportgroup-91'
              },
              {
                ref: 'dvportgroup-90'
              }
            ],
            networkFolder: {
              ref: 'group-n25'
            },
            overallStatus: 'gray',
            parent: {
              ref: 'group-d1'
            },
            ref: 'datacenter-21',
            vmFolder: {
              ref: 'group-v22'
            }
          }
        ]);
      });
    });

  });

  describe('The getPerfCounters method', function() {

    it('should return an array of counters with their key, when querying virtual machines', function() {
      this.mockSoapOperation('5.5', 'RetrieveServiceContent');
      this.mockSoapOperation('5.5', 'getPerfCountersForVms/full/CreateContainerView');
      this.mockSoapOperation('5.5', 'getPerfCountersForVms/full/RetreivePropertiesExVms');
      this.mockSoapOperation('5.5', 'getPerfCountersForVms/full/RetrievePropertiesEx');
      this.mockSoapOperation('5.5', 'getPerfCountersForVms/full/QueryPerf');

      return client.getPerfCounters(VirtualMachine, {
        'cpu.usage.none.percent': '',
        'cpu.ready.summation': '',
        'cpu.costop.summation': '',
        'mem.usage.none.percent': '',
        'datastore.numberReadAveraged.average': '',
        'datastore.numberWriteAveraged.average': '',
        'datastore.Read.average': '',
        'datastore.Write.average': '',
        'datastore.totalReadLatency.average': '',
        'datastore.totalWriteLatency.average': '',
        'net.received.average': '',
        'net.transmitted.average': ''
      }, ['name', 'summary.config.uuid']).then((entity) => {
        expect(entity).to.deep.equal([
          {
            entity: {
              name: 'first-vm-111',
              ref: 'vm-111',
              summary: {
                config: {
                  uuid: '726c3519-f2a5-48d9-a5b7-d4f0b2525ac8'
                }
              }
            },
            sampleInfo: [
              {
                interval: 20,
                timestamp: new Date('2019-06-17T13:25:00.000Z')
              }
            ],
            value: [
              {
                id: {
                  counterId: 1,
                  counterName: 'cpu.usage.none.percent',
                  instance: ''
                },
                value: [
                  22
                ]
              },
              {
                id: {
                  counterId: 12,
                  counterName: 'cpu.ready.summation',
                  instance: ''
                },
                value: [
                  1
                ]
              },
              {
                id: {
                  counterId: 23,
                  counterName: 'mem.usage.none.percent',
                  instance: ''
                },
                value: [
                  99
                ]
              },
              {
                id: {
                  counterId: 148,
                  counterName: 'net.received.average',
                  instance: ''
                },
                value: [
                  0
                ]
              },
              {
                id: {
                  counterId: 149,
                  counterName: 'net.transmitted.average',
                  instance: ''
                },
                value: [
                  0
                ]
              },
              {
                id: {
                  counterId: 425,
                  counterName: 'cpu.costop.summation',
                  instance: ''
                },
                value: [
                  0
                ]
              }
            ]
          },
          {
            entity: {
              name: 'second-vm-112',
              ref: 'vm-112',
              summary: {
                config: {
                  uuid: 'ee5843d6-7b1b-4916-bd79-e39c0f13aee1'
                }
              }
            },
            sampleInfo: [
              {
                interval: 20,
                timestamp: new Date('2019-06-17T13:25:00.000Z')
              }
            ],
            value: [
              {
                id: {
                  counterId: 1,
                  counterName: 'cpu.usage.none.percent',
                  instance: ''
                },
                value: [
                  207
                ]
              },
              {
                id: {
                  counterId: 12,
                  counterName: 'cpu.ready.summation',
                  instance: ''
                },
                value: [
                  1
                ]
              },
              {
                id: {
                  counterId: 23,
                  counterName: 'mem.usage.none.percent',
                  instance: ''
                },
                value: [
                  1599
                ]
              },
              {
                id: {
                  counterId: 148,
                  counterName: 'net.received.average',
                  instance: ''
                },
                value: [
                  12
                ]
              },
              {
                id: {
                  counterId: 149,
                  counterName: 'net.transmitted.average',
                  instance: ''
                },
                value: [
                  11
                ]
              },
              {
                id: {
                  counterId: 425,
                  counterName: 'cpu.costop.summation',
                  instance: ''
                },
                value: [
                  0
                ]
              }
            ]
          }
        ]);
      });
    });

    it('should return an empty array, when querying virtual machines but we have an empty set', function() {
      this.mockSoapOperation('5.5', 'RetrieveServiceContent');
      this.mockSoapOperation('5.5', 'getPerfCountersForVms/full/CreateContainerView');
      this.mockSoapOperation('5.5', 'getPerfCountersForVms/full/RetreivePropertiesExVmsEmpty');

      return client.getPerfCounters(VirtualMachine, {
        'cpu.usage.none.percent': '',
        'cpu.ready.summation': '',
        'cpu.costop.summation': '',
        'mem.usage.none.percent': '',
        'datastore.numberReadAveraged.average': '',
        'datastore.numberWriteAveraged.average': '',
        'datastore.Read.average': '',
        'datastore.Write.average': '',
        'datastore.totalReadLatency.average': '',
        'datastore.totalWriteLatency.average': '',
        'net.received.average': '',
        'net.transmitted.average': ''
      }).then((entity) => {
        expect(entity).to.deep.equal([]);
      });
    });

    it('should return an array of counters with their key, when querying host system', function() {
      this.mockSoapOperation('5.5', 'RetrieveServiceContent');
      this.mockSoapOperation('5.5', 'getPerfCountersForHosts/full/CreateContainerView');
      this.mockSoapOperation('5.5', 'getPerfCountersForHosts/full/RetreivePropertiesExHosts');
      this.mockSoapOperation('5.5', 'getPerfCountersForHosts/full/RetrievePropertiesEx');
      this.mockSoapOperation('5.5', 'getPerfCountersForHosts/full/QueryPerf');

      return client.getPerfCounters(HostSystem, {
        'cpu.usage.none.percent': '',
        'cpu.ready.summation': '',
        'mem.usage.none.percent': '',
        'storageAdapter.read.average': '*',
        'storageAdapter.write.average': '*',
        'net.received.average': '',
        'net.transmitted.average': ''
      }, ['name', 'summary.hardware.uuid']).then((entity) => {
        expect(entity).to.deep.equal([
          {
            entity: {
              name: 'first-host-72',
              ref: 'host-72',
              summary: {
                hardware: {
                  uuid: 'ee5843d6-7b1b-4916-bd79-e39c0f13aee1'
                }
              }
            },
            sampleInfo: [
              {
                interval: 20,
                timestamp: new Date('2019-06-17T14:28:40.000Z')
              }
            ],
            value: [
              {
                id: {
                  counterId: 1,
                  counterName: 'cpu.usage.none.percent',
                  instance: ''
                },
                value: [
                  46
                ]
              },
              {
                id: {
                  counterId: 12,
                  counterName: 'cpu.ready.summation',
                  instance: ''
                },
                value: [
                  17
                ]
              },
              {
                id: {
                  counterId: 23,
                  counterName: 'mem.usage.none.percent',
                  instance: ''
                },
                value: [
                  1195
                ]
              },
              {
                id: {
                  counterId: 148,
                  counterName: 'net.received.average',
                  instance: ''
                },
                value: [
                  17
                ]
              },
              {
                id: {
                  counterId: 149,
                  counterName: 'net.transmitted.average',
                  instance: ''
                },
                value: [
                  23
                ]
              }
            ]
          },
          {
            entity: {
              name: 'second-host-67',
              ref: 'host-67',
              summary: {
                hardware: {
                  uuid: 'ee5843d6-7b1b-4916-bd79-e39c0f13aee1'
                }
              }
            },
            sampleInfo: [
              {
                interval: 20,
                timestamp: new Date('2019-06-17T14:28:40.000Z')
              }
            ],
            value: [
              {
                id: {
                  counterId: 1,
                  counterName: 'cpu.usage.none.percent',
                  instance: ''
                },
                value: [
                  79
                ]
              },
              {
                id: {
                  counterId: 12,
                  counterName: 'cpu.ready.summation',
                  instance: ''
                },
                value: [
                  15
                ]
              },
              {
                id: {
                  counterId: 23,
                  counterName: 'mem.usage.none.percent',
                  instance: ''
                },
                value: [
                  1122
                ]
              },
              {
                id: {
                  counterId: 148,
                  counterName: 'net.received.average',
                  instance: ''
                },
                value: [
                  22
                ]
              },
              {
                id: {
                  counterId: 149,
                  counterName: 'net.transmitted.average',
                  instance: ''
                },
                value: [
                  9
                ]
              }
            ]
          }
        ]);
      });
    });

    it('should return an array of counters with their key, when querying host system but we have an empty set', function() {
      this.mockSoapOperation('5.5', 'RetrieveServiceContent');
      this.mockSoapOperation('5.5', 'getPerfCountersForHosts/full/CreateContainerView');
      this.mockSoapOperation('5.5', 'getPerfCountersForHosts/full/RetreivePropertiesExHostsEmpty');

      return client.getPerfCounters(HostSystem, [
        'cpu.usage.none',
        'cpu.ready.summation',
        'mem.usage.none',
        'storageAdapter.read.average',
        'storageAdapter.write.average',
        'net.received.average',
        'net.transmitted.average'
      ]).then((entity) => {
        expect(entity).to.deep.equal([]);
      });
    });

    it('should only request existing counters and discard metrics with no value', function() {
      this.mockSoapOperation('5.5', 'RetrieveServiceContent');
      this.mockSoapOperation('5.5', 'getPerfCountersForVms/full/CreateContainerView');
      this.mockSoapOperation('5.5', 'getPerfCountersForVms/full/RetreivePropertiesExVms');
      this.mockSoapOperation('5.5', 'getPerfCountersForVms/full/RetrievePropertiesEx');
      this.mockSoapOperation('5.5', 'getPerfCountersForVms/full/QueryPerf_MissingCounterValue');

      return client.getPerfCounters(VirtualMachine, {
        'cpu.usage.none.percent': '',
        'cpu.ready.summation': '',
        'cpu.costop.summation': '',
        'mem.usage.none.percent': '',
        'datastore.numberReadAveraged.average': '',
        'datastore.numberWriteAveraged.average': '',
        'datastore.Read.average': '',
        'datastore.Write.average': '',
        'datastore.totalReadLatency.average': '',
        'datastore.totalWriteLatency.average': '',
        'net.received.average': '',
        'net.transmitted.average': '',
        'non.existing.counter': '' // This one does not exist
      }, ['name', 'summary.config.uuid']).then((entity) => {
        expect(entity).to.deep.equal([
          {
            entity: {
              name: 'first-vm-111',
              ref: 'vm-111',
              summary: {
                config: {
                  uuid: '726c3519-f2a5-48d9-a5b7-d4f0b2525ac8'
                }
              }
            },
            sampleInfo: [
              {
                interval: 20,
                timestamp: new Date('2019-06-17T13:25:00.000Z')
              }
            ],
            value: [
              {
                id: {
                  counterId: 23,
                  counterName: 'mem.usage.none.percent',
                  instance: ''
                },
                value: [
                  99
                ]
              },
              {
                id: {
                  counterId: 148,
                  counterName: 'net.received.average',
                  instance: ''
                },
                value: [
                  0
                ]
              },
              {
                id: {
                  counterId: 149,
                  counterName: 'net.transmitted.average',
                  instance: ''
                },
                value: [
                  0
                ]
              },
              {
                id: {
                  counterId: 425,
                  counterName: 'cpu.costop.summation',
                  instance: ''
                },
                value: [
                  0
                ]
              }
            ]
          },
          {
            entity: {
              name: 'second-vm-112',
              ref: 'vm-112',
              summary: {
                config: {
                  uuid: 'ee5843d6-7b1b-4916-bd79-e39c0f13aee1'
                }
              }
            },
            sampleInfo: [
              {
                interval: 20,
                timestamp: new Date('2019-06-17T13:25:00.000Z')
              }
            ],
            value: [
              {
                id: {
                  counterId: 1,
                  counterName: 'cpu.usage.none.percent',
                  instance: ''
                },
                value: [
                  207
                ]
              },
              {
                id: {
                  counterId: 12,
                  counterName: 'cpu.ready.summation',
                  instance: ''
                },
                value: [
                  1
                ]
              },
              {
                id: {
                  counterId: 23,
                  counterName: 'mem.usage.none.percent',
                  instance: ''
                },
                value: [
                  1599
                ]
              },
              {
                id: {
                  counterId: 148,
                  counterName: 'net.received.average',
                  instance: ''
                },
                value: [
                  12
                ]
              },
              {
                id: {
                  counterId: 149,
                  counterName: 'net.transmitted.average',
                  instance: ''
                },
                value: [
                  11
                ]
              },
              {
                id: {
                  counterId: 425,
                  counterName: 'cpu.costop.summation',
                  instance: ''
                },
                value: [
                  0
                ]
              }
            ]
          }
        ]);
      });
    });

    it('should request perfs in chunks, honoring maxQuerySpecSize feature flag', function() {
      client = new Client('https://url/sdk', {}, { maxQuerySpecSize: 10 });

      this.mockSoapOperation('5.5', 'RetrieveServiceContent');
      this.mockSoapOperation('5.5', 'getPerfCountersForVms/full/CreateContainerView');
      this.mockSoapOperation('5.5', 'getPerfCountersForVms/full/RetreivePropertiesExVms');
      this.mockSoapOperation('5.5', 'getPerfCountersForVms/full/RetrievePropertiesEx');
      this.mockSoapOperation('5.5', 'getPerfCountersForVms/full_max10/QueryPerf_chunk1');
      this.mockSoapOperation('5.5', 'getPerfCountersForVms/full_max10/QueryPerf_chunk2');
      this.mockSoapOperation('5.5', 'getPerfCountersForVms/full_max10/QueryPerf_chunk3');

      return client.getPerfCounters(VirtualMachine, {
        'cpu.usage.none.percent': '',
        'cpu.ready.summation': '',
        'cpu.costop.summation': '',
        'mem.usage.none.percent': '',
        'datastore.numberReadAveraged.average': '',
        'datastore.numberWriteAveraged.average': '',
        'datastore.Read.average': '',
        'datastore.Write.average': '',
        'datastore.totalReadLatency.average': '',
        'datastore.totalWriteLatency.average': '',
        'net.received.average': '',
        'net.transmitted.average': ''
      }, ['name', 'summary.config.uuid']).then((entity) => {
        expect(entity).to.deep.equal([
          {
            entity: {
              name: 'first-vm-111',
              ref: 'vm-111',
              summary: {
                config: {
                  uuid: '726c3519-f2a5-48d9-a5b7-d4f0b2525ac8'
                }
              }
            },
            sampleInfo: [
              {
                interval: 20,
                timestamp: new Date('2019-06-17T13:25:00.000Z')
              }
            ],
            value: [
              {
                id: {
                  counterId: 1,
                  counterName: 'cpu.usage.none.percent',
                  instance: ''
                },
                value: [
                  22
                ]
              },
              {
                id: {
                  counterId: 12,
                  counterName: 'cpu.ready.summation',
                  instance: ''
                },
                value: [
                  1
                ]
              },
              {
                id: {
                  counterId: 23,
                  counterName: 'mem.usage.none.percent',
                  instance: ''
                },
                value: [
                  99
                ]
              },
              {
                id: {
                  counterId: 148,
                  counterName: 'net.received.average',
                  instance: ''
                },
                value: [
                  0
                ]
              },
              {
                id: {
                  counterId: 149,
                  counterName: 'net.transmitted.average',
                  instance: ''
                },
                value: [
                  0
                ]
              },
              {
                id: {
                  counterId: 425,
                  counterName: 'cpu.costop.summation',
                  instance: ''
                },
                value: [
                  0
                ]
              }
            ]
          },
          {
            entity: {
              name: 'second-vm-112',
              ref: 'vm-112',
              summary: {
                config: {
                  uuid: 'ee5843d6-7b1b-4916-bd79-e39c0f13aee1'
                }
              }
            },
            sampleInfo: [
              {
                interval: 20,
                timestamp: new Date('2019-06-17T13:25:00.000Z')
              }
            ],
            value: [
              {
                id: {
                  counterId: 1,
                  counterName: 'cpu.usage.none.percent',
                  instance: ''
                },
                value: [
                  207
                ]
              },
              {
                id: {
                  counterId: 12,
                  counterName: 'cpu.ready.summation',
                  instance: ''
                },
                value: [
                  1
                ]
              },
              {
                id: {
                  counterId: 23,
                  counterName: 'mem.usage.none.percent',
                  instance: ''
                },
                value: [
                  1599
                ]
              },
              {
                id: {
                  counterId: 148,
                  counterName: 'net.received.average',
                  instance: ''
                },
                value: [
                  12
                ]
              },
              {
                id: {
                  counterId: 149,
                  counterName: 'net.transmitted.average',
                  instance: ''
                },
                value: [
                  11
                ]
              },
              {
                id: {
                  counterId: 425,
                  counterName: 'cpu.costop.summation',
                  instance: ''
                },
                value: [
                  0
                ]
              }
            ]
          }
        ]);
      });
    });

  });

  describe('The getDatastores method', function() {

    it('should return an array of Datastores instances, when queried with a set of properties', function() {
      this.mockSoapOperation('5.5', 'RetrieveServiceContent');
      this.mockSoapOperation('5.5', 'getDatastores/full/CreateContainerView');
      this.mockSoapOperation('5.5', 'getDatastores/full/RetrievePropertiesEx');

      return client.getDatastores().then((ds) => {
        expect(ds).to.deep.equal([
          {
            browser: {
              ref: 'datastoreBrowser-datastore-30'
            },
            capability: {
              directoryHierarchySupported: true,
              perFileThinProvisioningSupported: true,
              rawDiskMappingsSupported: true,
              storageIORMSupported: true
            },
            configStatus: 'gray',
            host: [
              {
                key: {
                  ref: 'host-67'
                },
                mountInfo: {
                  accessMode: 'readWrite',
                  accessible: true,
                  mounted: true,
                  path: '/vmfs/volumes/5c486636-ea036e5d-d6e0-b8ca3a700cd4'
                }
              },
              {
                key: {
                  ref: 'host-72'
                },
                mountInfo: {
                  accessMode: 'readWrite',
                  accessible: true,
                  mounted: true,
                  path: '/vmfs/volumes/5c486636-ea036e5d-d6e0-b8ca3a700cd4'
                }
              }
            ],
            info: {
              freeSpace: 3261195091968,
              maxFileSize: 70368744177664,
              name: 'Datastore02',
              timestamp: new Date('2019-08-29T14:21:31.837Z'),
              url: 'ds:///vmfs/volumes/5c486636-ea036e5d-d6e0-b8ca3a700cd4/',
              vmfs: {
                blockSizeMb: 1,
                capacity: 4294698860544,
                extent: [
                  {
                    diskName: 'naa.60080e500029f74800000b975c47da10',
                    partition: 1
                  }
                ],
                local: false,
                majorVersion: 6,
                maxBlocks: 63963136,
                name: 'Datastore02',
                ssd: true,
                type: 'VMFS',
                uuid: '5c486636-ea036e5d-d6e0-b8ca3a700cd4',
                version: '6.82',
                vmfsUpgradable: false
              }
            },
            iormConfiguration: {
              congestionThreshold: 30,
              enabled: false,
              statsAggregationDisabled: false,
              statsCollectionEnabled: false
            },
            name: 'Datastore02',
            overallStatus: 'green',
            parent: {
              ref: 'group-s24'
            },
            ref: 'datastore-30',
            summary: {
              accessible: true,
              capacity: 4294698860544,
              datastore: {
                ref: 'datastore-30'
              },
              freeSpace: 3261195091968,
              maintenanceMode: 'normal',
              multipleHostAccess: true,
              name: 'Datastore02',
              type: 'VMFS',
              uncommitted: 453768125991,
              url: 'ds:///vmfs/volumes/5c486636-ea036e5d-d6e0-b8ca3a700cd4/'
            },
            vm: [
              {
                ref: 'vm-115'
              },
              {
                ref: 'vm-108'
              },
              {
                ref: 'vm-114'
              },
              {
                ref: 'vm-112'
              },
              {
                ref: 'vm-102'
              },
              {
                ref: 'vm-111'
              },
              {
                ref: 'vm-127'
              },
              {
                ref: 'vm-109'
              }
            ]
          },
          {
            browser: {
              ref: 'datastoreBrowser-datastore-29'
            },
            capability: {
              directoryHierarchySupported: true,
              perFileThinProvisioningSupported: true,
              rawDiskMappingsSupported: true,
              storageIORMSupported: true
            },
            configStatus: 'gray',
            host: [
              {
                key: {
                  ref: 'host-67'
                },
                mountInfo: {
                  accessMode: 'readWrite',
                  accessible: true,
                  mounted: true,
                  path: '/vmfs/volumes/5c486628-a1e8f2a1-0c56-b8ca3a700cd4'
                }
              },
              {
                key: {
                  ref: 'host-72'
                },
                mountInfo: {
                  accessMode: 'readWrite',
                  accessible: true,
                  mounted: true,
                  path: '/vmfs/volumes/5c486628-a1e8f2a1-0c56-b8ca3a700cd4'
                }
              }
            ],
            info: {
              freeSpace: 3179936743424,
              maxFileSize: 70368744177664,
              name: 'Datastore01',
              timestamp: new Date('2019-08-29T14:21:31.832Z'),
              url: 'ds:///vmfs/volumes/5c486628-a1e8f2a1-0c56-b8ca3a700cd4/',
              vmfs: {
                blockSizeMb: 1,
                capacity: 4294698860544,
                extent: [
                  {
                    diskName: 'naa.60080e500029f74800000b935c47d9f3',
                    partition: 1
                  }
                ],
                local: true,
                majorVersion: 6,
                maxBlocks: 63963136,
                name: 'Datastore01',
                ssd: true,
                type: 'VMFS',
                uuid: '5c486628-a1e8f2a1-0c56-b8ca3a700cd4',
                version: '6.82',
                vmfsUpgradable: false
              }
            },
            iormConfiguration: {
              congestionThreshold: 30,
              enabled: false,
              statsAggregationDisabled: false,
              statsCollectionEnabled: false
            },
            name: 'Datastore01',
            overallStatus: 'green',
            parent: {
              ref: 'group-s24'
            },
            ref: 'datastore-29',
            summary: {
              accessible: true,
              capacity: 4294698860544,
              datastore: {
                ref: 'datastore-29'
              },
              freeSpace: 3179936743424,
              maintenanceMode: 'normal',
              multipleHostAccess: true,
              name: 'Datastore01',
              type: 'VMFS',
              uncommitted: 495074193905,
              url: 'ds:///vmfs/volumes/5c486628-a1e8f2a1-0c56-b8ca3a700cd4/'
            },
            vm: [
              {
                ref: 'vm-129'
              },
              {
                ref: 'vm-107'
              },
              {
                ref: 'vm-114'
              },
              {
                ref: 'vm-805'
              },
              {
                ref: 'vm-115'
              },
              {
                ref: 'vm-106'
              },
              {
                ref: 'vm-108'
              },
              {
                ref: 'vm-113'
              },
              {
                ref: 'vm-110'
              },
              {
                ref: 'vm-127'
              },
              {
                ref: 'vm-832'
              },
              {
                ref: 'vm-111'
              },
              {
                ref: 'vm-109'
              },
              {
                ref: 'vm-806'
              },
              {
                ref: 'vm-112'
              },
              {
                ref: 'vm-102'
              },
              {
                ref: 'vm-68'
              },
              {
                ref: 'vm-121'
              },
              {
                ref: 'vm-126'
              }
            ]
          }
        ]);
      });
    });

    it('should return an array of Datastores instances, using v6.5 of the WSDL', function() {
      this.mockSoapOperation('6.5', 'RetrieveServiceContent');
      this.mockSoapOperation('6.5', 'getDatastores/full/CreateContainerView');
      this.mockSoapOperation('6.5', 'getDatastores/full/RetrievePropertiesEx');

      return client.getDatastores().then((ds) => {
        expect(ds).to.deep.equal([
          {
            alarmActionsEnabled: true,
            browser: {
              ref: 'datastoreBrowser-datastore-2033'
            },
            capability: {
              directoryHierarchySupported: true,
              perFileThinProvisioningSupported: true,
              rawDiskMappingsSupported: false,
              storageIORMSupported: false
            },
            configStatus: 'gray',
            host: [
              {
                key: {
                  ref: 'host-434'
                },
                mountInfo: {
                  accessMode: 'readWrite',
                  accessible: true,
                  mounted: true,
                  path: '/vmfs/volumes/vvol:9c7ac6397f1b4371-b73a000000989970'
                }
              }
            ],
            info: {
              freeSpace: 19949158400,
              maxFileSize: 17592186044416,
              name: 'Test_again_VVOL',
              timestamp: new Date('2024-11-22T09:42:44.725Z'),
              url: 'ds:///vmfs/volumes/vvol:9c7ac6397f1b4371-b73a000000989970/',
              vvolDS: {
                hostPE: [
                  {
                    key: {
                      ref: 'host-434'
                    },
                    protocolEndpoint: [
                      {
                        deviceId: 'naa.600a09803830456f302b524e6336384c',
                        peType: 'block',
                        storageArray: 'NetApp.clustered.Data.ONTAP.VP:9c7ac6397f1b4371b73a000000989749',
                        type: 'scsi',
                        uuid: '9c7ac6397f1b4371b73a0000009897e3'
                      }
                    ]
                  }
                ],
                scId: 'vvol:9c7ac6397f1b4371-b73a000000989970',
                storageArray: [
                  {
                    modelId: 'FAS2650',
                    name: 'dev_ucs_fc',
                    uuid: 'NetApp.clustered.Data.ONTAP.VP:9c7ac6397f1b4371b73a000000989749',
                    vendorId: 'NETAPP'
                  }
                ],
                vasaProviderInfo: [
                  {
                    arrayState: [
                      {
                        active: true,
                        arrayId: 'NetApp.clustered.Data.ONTAP.VP:9c7ac6397f1b4371b73a000000989749',
                        priority: 255
                      }
                    ],
                    provider: {
                      name: 'NetApp-VP',
                      url: 'https://10.78.7.169:9083/version.xml'
                    }
                  }
                ]
              }
            },
            iormConfiguration: {
              congestionThreshold: 30,
              enabled: false,
              statsAggregationDisabled: false,
              statsCollectionEnabled: false
            },
            name: 'Test_again_VVOL',
            overallStatus: 'green',
            parent: {
              ref: 'group-s5'
            },
            ref: 'datastore-2033',
            summary: {
              accessible: true,
              capacity: 32212254720,
              datastore: {
                ref: 'datastore-2033'
              },
              freeSpace: 19949158400,
              maintenanceMode: 'normal',
              multipleHostAccess: false,
              name: 'Test_again_VVOL',
              type: 'VVOL',
              url: 'ds:///vmfs/volumes/vvol:9c7ac6397f1b4371-b73a000000989970/'
            },
            triggeredAlarmState: [],
            vm: [
              {
                ref: 'vm-2017'
              }
            ]
          }
        ]);
      });
    });

    it('should return an array of Datastores instances, using v6.7 of the WSDL', function() {
      this.mockSoapOperation('6.7', 'RetrieveServiceContent');
      this.mockSoapOperation('6.7', 'getDatastores/full/CreateContainerView');
      this.mockSoapOperation('6.7', 'getDatastores/full/RetrievePropertiesEx');

      return client.getDatastores().then((ds) => {
        expect(ds).to.deep.equal([
          {
            alarmActionsEnabled: true,
            browser: {
              ref: 'datastoreBrowser-datastore-2051'
            },
            capability: {
              directoryHierarchySupported: true,
              perFileThinProvisioningSupported: true,
              rawDiskMappingsSupported: true,
              storageIORMSupported: true
            },
            configStatus: 'gray',
            host: [
              {
                key: {
                  ref: 'host-431'
                },
                mountInfo: {
                  accessMode: 'readWrite',
                  accessible: true,
                  mounted: true,
                  path: '/vmfs/volumes/67e6af77-6cb42d93-58eb-b8ca3a6fed18'
                }
              },
              {
                key: {
                  ref: 'host-434'
                },
                mountInfo: {
                  accessMode: 'readWrite',
                  accessible: true,
                  mounted: true,
                  path: '/vmfs/volumes/67e6af77-6cb42d93-58eb-b8ca3a6fed18'
                }
              },
              {
                key: {
                  ref: 'host-2054'
                },
                mountInfo: {
                  accessMode: 'readWrite',
                  accessible: true,
                  mounted: true,
                  path: '/vmfs/volumes/67e6af77-6cb42d93-58eb-b8ca3a6fed18'
                }
              },
              {
                key: {
                  ref: 'host-2058'
                },
                mountInfo: {
                  accessMode: 'readWrite',
                  accessible: true,
                  mounted: true,
                  path: '/vmfs/volumes/67e6af77-6cb42d93-58eb-b8ca3a6fed18'
                }
              }
            ],
            info: {
              freeSpace: 8960081920,
              maxFileSize: 70368744177664,
              name: 'DS-HA-002',
              timestamp: new Date('2025-06-02T10:08:25.163Z'),
              url: 'ds:///vmfs/volumes/67e6af77-6cb42d93-58eb-b8ca3a6fed18/',
              vmfs: {
                blockSizeMb: 1,
                capacity: 10468982784,
                extent: [
                  {
                    diskName: 'naa.600a09803831364a515d593562657874',
                    partition: 1
                  }
                ],
                local: false,
                majorVersion: 6,
                maxBlocks: 63963136,
                name: 'DS-HA-002',
                ssd: true,
                type: 'VMFS',
                unmapGranularity: 1024,
                unmapPriority: 'low',
                uuid: '67e6af77-6cb42d93-58eb-b8ca3a6fed18',
                version: '6.82',
                vmfsUpgradable: false
              }
            },
            iormConfiguration: {
              congestionThreshold: 30,
              enabled: false,
              statsAggregationDisabled: false,
              statsCollectionEnabled: false
            },
            name: 'DS-HA-002',
            overallStatus: 'green',
            parent: {
              ref: 'group-s5'
            },
            ref: 'datastore-2051',
            summary: {
              accessible: true,
              capacity: 10468982784,
              datastore: {
                ref: 'datastore-2051'
              },
              freeSpace: 8960081920,
              maintenanceMode: 'normal',
              multipleHostAccess: true,
              name: 'DS-HA-002',
              type: 'VMFS',
              uncommitted: 0,
              url: 'ds:///vmfs/volumes/67e6af77-6cb42d93-58eb-b8ca3a6fed18/'
            },
            triggeredAlarmState: [],
            vm: []
          },
          {
            alarmActionsEnabled: true,
            browser: {
              ref: 'datastoreBrowser-datastore-2050'
            },
            capability: {
              directoryHierarchySupported: true,
              perFileThinProvisioningSupported: true,
              rawDiskMappingsSupported: true,
              storageIORMSupported: true
            },
            configStatus: 'gray',
            host: [
              {
                key: {
                  ref: 'host-431'
                },
                mountInfo: {
                  accessMode: 'readWrite',
                  accessible: true,
                  mounted: true,
                  path: '/vmfs/volumes/67e6aec8-d763a284-3d86-0025b5100001'
                }
              },
              {
                key: {
                  ref: 'host-434'
                },
                mountInfo: {
                  accessMode: 'readWrite',
                  accessible: true,
                  mounted: true,
                  path: '/vmfs/volumes/67e6aec8-d763a284-3d86-0025b5100001'
                }
              },
              {
                key: {
                  ref: 'host-2054'
                },
                mountInfo: {
                  accessMode: 'readWrite',
                  accessible: true,
                  mounted: true,
                  path: '/vmfs/volumes/67e6aec8-d763a284-3d86-0025b5100001'
                }
              },
              {
                key: {
                  ref: 'host-2058'
                },
                mountInfo: {
                  accessMode: 'readWrite',
                  accessible: true,
                  mounted: true,
                  path: '/vmfs/volumes/67e6aec8-d763a284-3d86-0025b5100001'
                }
              }
            ],
            info: {
              freeSpace: 8960081920,
              maxFileSize: 70368744177664,
              name: 'DS-HA-001',
              timestamp: new Date('2025-06-02T13:28:58.353Z'),
              url: 'ds:///vmfs/volumes/67e6aec8-d763a284-3d86-0025b5100001/',
              vmfs: {
                blockSizeMb: 1,
                capacity: 10468982784,
                extent: [
                  {
                    diskName: 'naa.600a09803831364a712459355841464d',
                    partition: 1
                  }
                ],
                local: false,
                majorVersion: 6,
                maxBlocks: 63963136,
                name: 'DS-HA-001',
                ssd: true,
                type: 'VMFS',
                unmapBandwidthSpec: {
                  dynamicMax: 0,
                  dynamicMin: 100,
                  fixedValue: 200,
                  policy: 'fixed'
                },
                unmapGranularity: 1024,
                unmapPriority: 'low',
                uuid: '67e6aec8-d763a284-3d86-0025b5100001',
                version: '6.82',
                vmfsUpgradable: false
              }
            },
            iormConfiguration: {
              congestionThreshold: 30,
              enabled: false,
              statsAggregationDisabled: false,
              statsCollectionEnabled: false
            },
            name: 'DS-HA-001',
            overallStatus: 'green',
            parent: {
              ref: 'group-s5'
            },
            ref: 'datastore-2050',
            summary: {
              accessible: true,
              capacity: 10468982784,
              datastore: {
                ref: 'datastore-2050'
              },
              freeSpace: 8960081920,
              maintenanceMode: 'normal',
              multipleHostAccess: true,
              name: 'DS-HA-001',
              type: 'VMFS',
              uncommitted: 0,
              url: 'ds:///vmfs/volumes/67e6aec8-d763a284-3d86-0025b5100001/'
            },
            triggeredAlarmState: [],
            vm: []
          },
          {
            alarmActionsEnabled: true,
            browser: {
              ref: 'datastoreBrowser-datastore-2049'
            },
            capability: {
              directoryHierarchySupported: true,
              perFileThinProvisioningSupported: true,
              rawDiskMappingsSupported: true,
              storageIORMSupported: true
            },
            configStatus: 'gray',
            host: [
              {
                key: {
                  ref: 'host-431'
                },
                mountInfo: {
                  accessMode: 'readWrite',
                  accessible: true,
                  mounted: true,
                  path: '/vmfs/volumes/67e67063-8ce2c157-97a9-b8ca3a6fed18'
                }
              },
              {
                key: {
                  ref: 'host-434'
                },
                mountInfo: {
                  accessMode: 'readWrite',
                  accessible: true,
                  mounted: true,
                  path: '/vmfs/volumes/67e67063-8ce2c157-97a9-b8ca3a6fed18'
                }
              },
              {
                key: {
                  ref: 'host-2054'
                },
                mountInfo: {
                  accessMode: 'readWrite',
                  accessible: true,
                  mounted: true,
                  path: '/vmfs/volumes/67e67063-8ce2c157-97a9-b8ca3a6fed18'
                }
              },
              {
                key: {
                  ref: 'host-2058'
                },
                mountInfo: {
                  accessMode: 'readWrite',
                  accessible: true,
                  mounted: true,
                  path: '/vmfs/volumes/67e67063-8ce2c157-97a9-b8ca3a6fed18'
                }
              }
            ],
            info: {
              freeSpace: 10015287017472,
              maxFileSize: 70368744177664,
              name: 'DS-A200',
              timestamp: new Date('2025-07-10T11:49:43.428Z'),
              url: 'ds:///vmfs/volumes/67e67063-8ce2c157-97a9-b8ca3a6fed18/',
              vmfs: {
                blockSizeMb: 1,
                capacity: 17591917608960,
                extent: [
                  {
                    diskName: 'naa.600a09803831364a712459355841464c',
                    partition: 1
                  }
                ],
                local: false,
                majorVersion: 6,
                maxBlocks: 63963136,
                name: 'DS-A200',
                ssd: true,
                type: 'VMFS',
                unmapGranularity: 1024,
                unmapPriority: 'low',
                uuid: '67e67063-8ce2c157-97a9-b8ca3a6fed18',
                version: '6.82',
                vmfsUpgradable: false
              }
            },
            iormConfiguration: {
              congestionThreshold: 30,
              enabled: false,
              statsAggregationDisabled: false,
              statsCollectionEnabled: false
            },
            name: 'DS-A200',
            overallStatus: 'green',
            parent: {
              ref: 'group-s5'
            },
            ref: 'datastore-2049',
            summary: {
              accessible: true,
              capacity: 17591917608960,
              datastore: {
                ref: 'datastore-2049'
              },
              freeSpace: 10015287017472,
              maintenanceMode: 'normal',
              multipleHostAccess: true,
              name: 'DS-A200',
              type: 'VMFS',
              uncommitted: 41955545212403,
              url: 'ds:///vmfs/volumes/67e67063-8ce2c157-97a9-b8ca3a6fed18/'
            },
            triggeredAlarmState: [],
            vm: [
              {
                ref: 'vm-2092'
              },
              {
                ref: 'vm-2091'
              },
              {
                ref: 'vm-2085'
              },
              {
                ref: 'vm-2084'
              },
              {
                ref: 'vm-2083'
              },
              {
                ref: 'vm-2082'
              },
              {
                ref: 'vm-2078'
              },
              {
                ref: 'vm-2072'
              },
              {
                ref: 'vm-2071'
              },
              {
                ref: 'vm-2070'
              },
              {
                ref: 'vm-2069'
              },
              {
                ref: 'vm-2079'
              },
              {
                ref: 'vm-2068'
              },
              {
                ref: 'vm-2067'
              },
              {
                ref: 'vm-2077'
              },
              {
                ref: 'vm-2066'
              },
              {
                ref: 'vm-2062'
              },
              {
                ref: 'vm-1429'
              },
              {
                ref: 'vm-2087'
              },
              {
                ref: 'vm-83'
              },
              {
                ref: 'vm-156'
              },
              {
                ref: 'vm-84'
              },
              {
                ref: 'vm-2088'
              },
              {
                ref: 'vm-80'
              },
              {
                ref: 'vm-2028'
              },
              {
                ref: 'vm-2093'
              },
              {
                ref: 'vm-2086'
              },
              {
                ref: 'vm-69'
              },
              {
                ref: 'vm-155'
              },
              {
                ref: 'vm-154'
              },
              {
                ref: 'vm-2090'
              },
              {
                ref: 'vm-2081'
              },
              {
                ref: 'vm-2073'
              },
              {
                ref: 'vm-102'
              },
              {
                ref: 'vm-2080'
              },
              {
                ref: 'vm-2074'
              },
              {
                ref: 'vm-78'
              },
              {
                ref: 'vm-1997'
              },
              {
                ref: 'vm-1908'
              },
              {
                ref: 'vm-91'
              },
              {
                ref: 'vm-77'
              },
              {
                ref: 'vm-375'
              },
              {
                ref: 'vm-153'
              },
              {
                ref: 'vm-2013'
              },
              {
                ref: 'vm-300'
              },
              {
                ref: 'vm-1772'
              },
              {
                ref: 'vm-2023'
              },
              {
                ref: 'vm-17'
              },
              {
                ref: 'vm-369'
              },
              {
                ref: 'vm-82'
              },
              {
                ref: 'vm-2020'
              },
              {
                ref: 'vm-101'
              },
              {
                ref: 'vm-2089'
              },
              {
                ref: 'vm-368'
              },
              {
                ref: 'vm-2076'
              },
              {
                ref: 'vm-76'
              },
              {
                ref: 'vm-90'
              },
              {
                ref: 'vm-81'
              },
              {
                ref: 'vm-85'
              }
            ]
          }
        ]);
      });
    });

  });

});