Zerto Virtual Replication APIs : Resources Report API : See Also
  
See Also
Perl Code Example: Retrieving the First 100 Records
Perl Code Example: Retrieving All the Records
Response Format
Example XML response body:
<ArrayOfVmResourcesInfoStorageObject
  xmlns="http://schemas.datacontract.org/2004/07/Zerto.Zvm.Storage.StorageObject"
  xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <VmResourcesInfoStorageObject>
    <ActiveGuestMemoryInMB>20</ActiveGuestMemoryInMB>
    <BandwidthInBytes>-1</BandwidthInBytes>
    <ConsumedHostMemoryInMB>153</ConsumedHostMemoryInMB>
    <CpuLimitInMhz>-1</CpuLimitInMhz>
    <CpuReservedInMhz>0</CpuReservedInMhz>
    <CpuUsedInMhz>89</CpuUsedInMhz>
    <CrmId/>
    <MemoryInMB>2048</MemoryInMB>
    <MemoryLimitInMB>-1</MemoryLimitInMB>
    <MemoryReservedInMB>0</MemoryReservedInMB>
    <NumberOfVolumes>1</NumberOfVolumes>
    <NumberOfvCpu>1</NumberOfvCpu>
    <RecoveryJournalProvisionedStorageInGB>16</RecoveryJournalProvisionedStorageInGB>
    <RecoveryJournalUsedStorageInGB>0.584</RecoveryJournalUsedStorageInGB>
    <RecoveryVolumesProvisionedStorageInGB>5</RecoveryVolumesProvisionedStorageInGB>
    <RecoveryVolumesUsedStorageInGB>1.106</RecoveryVolumesUsedStorageInGB>
    <ServiceProfile>System Service Profile</ServiceProfile>
    <SourceCluster/>
    <SourceHost>987.65.432.1</SourceHost>
    <SourceOrgVDC/>
    <SourceResourcePool/>
    <SourceSite>Dallas</SourceSite>
    <SourceVCDOrg/>
    <SourceVolumesProvisionedStorageInGB>5</SourceVolumesProvisionedStorageInGB>
    <SourceVolumesUsedStorageInGB>1.106</SourceVolumesUsedStorageInGB>
    <SourceVraName>Z-VRA-987.65.432.1</SourceVraName>
    <StorageProfile/>
    <TargetCluster>London Cluster</TargetCluster>
    <TargetDatastores>datastore2</TargetDatastores>
    <TargetHost>123.45.678.9</TargetHost>
    <TargetOrgVDC/>
    <TargetResourcePool/>
    <TargetSite>London</TargetSite>
    <TargetVCDOrg/>
    <TargetVraName>Z-VRA-123.45.678.9</TargetVraName>
    <ThroughputInBytes>-1</ThroughputInBytes>
    <Timestamp>2014-02-04T01:00:23</Timestamp>
    <VmHardwareVersion>vmx-07</VmHardwareVersion>
    <VmIdentifier
      xmlns:a="http://schemas.datacontract.org/2004/07/Zerto.Zvm.Common.VirtualizationManager.VCenter">
      <a:InternalVmName>vm-518</a:InternalVmName>
      <a:ServerIdentifier>
        <a:ServerGuid>cbaab5ca-3915-4df7-8223-1ac851021f5a</a:ServerGuid>
      </a:ServerIdentifier>
    </VmIdentifier>
    <VmName>Billing</VmName>
    <VpgName>New VPG</VpgName>
    <VpgType>VC2VC</VpgType>
    <Zorg/>
  </VmResourcesInfoStorageObject>
  <VmResourcesInfoStorageObject>
  ...
  </VmResourcesInfoStorageObject>
  ...
</ArrayOfVmResourcesInfoStorageObject>
Response Values
Response values for https://zvm_ip:port/ZvmService/ResourcesReport/{filters}
Parameter
Description
ActiveGuestMemoryInMB
The active memory of the virtual machine.
BandwidthInBytes
The average bandwidth used between two consecutive samples.
ConsumedHostMemoryInMB
The amount of host memory consumed by the virtual machine.
CpuLimitInMhz
The maximum MHz available for the CPUs in the virtual machine.
CpuReservedInMhz
The MHz reserved for use by the CPUs in the virtual machine.
CpuUsedInMhz
The MHz used by the CPUs in the virtual machine.
CrmId
The CRM identifier specified in Zerto Cloud Manager for an organization that uses a cloud service provider for recovery.
MemoryInMB
The virtual machine defined memory.
MemoryLimitInMB
The upper limit for this virtual machine’s memory allocation.
MemoryReservedInMB
The guaranteed memory allocation for this virtual machine.
NumberOfvCpus
The number of CPUs for the virtual machine.
NumberOfVolumes
The number of volumes attached to the virtual machine.
RecoveryJournalProvisionedStorageInGB
The amount of provisioned journal storage for the virtual machine.
RecoveryJournalUsedStorageInGB
The amount of used journal storage for the virtual machine.
RecoveryVolumesProvisionedStorageInGB
The amount of provisioned storage for the virtual machine in the target site. This value is the sum of volumes’ provisioned size.
RecoveryVolumesUsedStorageInGB
The amount of used storage for the virtual machine in the target site.
ServiceProfile
The service profile used by the VPG.
SourceCluster
The source cluster name hosting the virtual machine.
SourceHost
The source ESX/ESXi name hosting the virtual machine.
SourceOrgVDC
The name of the source vDC Org.
SourceResourcePool
The source resource pool name hosting the virtual machine.
SourceSite
The source protected site name, defined in the Zerto User Interface.
SourceVCDOrg
The name of the source vCD Org.
SourceVolumesProvisionedStorageInGB
The amount of provisioned storage for the virtual machine in the source site. This value is the sum of volumes’ provisioned size.
SourceVolumesUsedStorageInGB
The amount of used storage for the virtual machine in the source site. This value is the sum of the volumes’ used size.
SourceVraName
The name of the source VRA used to send data to the recovery site.
StorageProfile
The target vCD storage profile used.
TargetCluster
The target cluster name hosting the virtual machine.
TargetDatastores
The target datastore used for the virtual machine if it is recovered.
TargetHost
The target ESX/ESXi name hosting the virtual machine when it is recovered.
TargetOrgVDC
The name of the target vDC Org
TargetResourcePool
The target resource pool name where the virtual machine will be recovered.
TargetSite
The target site name, defined in the Zerto User Interface.
TargetVCDOrg
The name of the target vCD Org.
TargetVraName
The name of the recovery VRA managing the recovery.
ThroughputInBytes
The average throughput used between two consecutive samples.
Timestamp
The date and time the resource information was collected. The value can be converted to an understandable date using code similar to the following:
var date = new Date(jsonDate);
or code similar to the Perl code example, jsonDateToString($), in Perl Code Example: Retrieving the First 100 Records
VmHardwareVersion
The VMware hardware version.
VmIdentifier
The internal virtual machine identifier.
The identifier comprises the server identifier and the virtual machine moref, with the format, serverid.moref.
VmName
The name of the virtual machine.
VpgName
The name of the VPG.
VpgType
The VPG Type. Possible values are:
VC2VC: vCenter to vCenter replication.
VC2VCD: vCenter to vCloud Director replication.
VCD2VCD: vCloud Director to vCloud Director replication.
VCD2VC: vCloud Director to vCenter replication.
ZORG
An organization set up in the Zerto Cloud Manager using a cloud service provider for recovery.