public class DeviceDiskInfo extends AbstractModel
| Constructor and Description | 
|---|
DeviceDiskInfo()  | 
| Modifier and Type | Method and Description | 
|---|---|
Long[] | 
getCapacityRatio()
Get Disk capacity. 
 | 
Long[] | 
getIoRatioPerSec()
Get Time percentage of IO operations per second 
 | 
Long[] | 
getIoWaitTime()
Get Average wait time of device I/O operations * 100 in milliseconds. 
 | 
Long[] | 
getRead()
Get Average number of read operations completed by the disk per second * 100. 
 | 
Long[] | 
getWrite()
Get Average number of write operations completed by the disk per second * 100. 
 | 
void | 
setCapacityRatio(Long[] CapacityRatio)
Set Disk capacity. 
 | 
void | 
setIoRatioPerSec(Long[] IoRatioPerSec)
Set Time percentage of IO operations per second 
 | 
void | 
setIoWaitTime(Long[] IoWaitTime)
Set Average wait time of device I/O operations * 100 in milliseconds. 
 | 
void | 
setRead(Long[] Read)
Set Average number of read operations completed by the disk per second * 100. 
 | 
void | 
setWrite(Long[] Write)
Set Average number of write operations completed by the disk per second * 100. 
 | 
void | 
toMap(HashMap<String,String> map,
     String prefix)
Internal implementation, normal users should not use it. 
 | 
any, fromJsonString, getBinaryParams, getMultipartRequestParams, set, setParamArrayObj, setParamArraySimple, setParamObj, setParamSimple, toJsonStringpublic Long[] getIoRatioPerSec()
public void setIoRatioPerSec(Long[] IoRatioPerSec)
IoRatioPerSec - Time percentage of IO operations per secondpublic Long[] getIoWaitTime()
public void setIoWaitTime(Long[] IoWaitTime)
IoWaitTime - Average wait time of device I/O operations * 100 in milliseconds. For example, if the value is 201, the average wait time of I/O operations is 201/100 = 2.1 milliseconds.public Long[] getRead()
public void setRead(Long[] Read)
Read - Average number of read operations completed by the disk per second * 100. For example, if the value is 2,002, the average number of read operations completed by the disk per second is 2,002/100=20.2.public Long[] getWrite()
public void setWrite(Long[] Write)
Write - Average number of write operations completed by the disk per second * 100. For example, if the value is 30,001, the average number of write operations completed by the disk per second is 30,001/100=300.01.public Long[] getCapacityRatio()
public void setCapacityRatio(Long[] CapacityRatio)
CapacityRatio - Disk capacity. Each value is comprised of two data, with the first data representing the used capacity and the second one representing the total disk capacity.Copyright © 2021. All rights reserved.