ConoHaNet.OpenStackMember.GetDiskIOGraph C# (CSharp) Method

GetDiskIOGraph() public method

public GetDiskIOGraph ( string serverId, string deviceName = null, DateTime startDate = null, DateTime endDate = null, string mode = null ) : string
serverId string
deviceName string
startDate DateTime
endDate DateTime
mode string
return string
        public string GetDiskIOGraph(string serverId, string deviceName = null, DateTime? startDate = null, DateTime? endDate = null, string mode = null)
        {
            string startDate_unixtime = (startDate == null) ? string.Empty : toUnixTime((DateTime)startDate);
            string endDate_unixtime = (endDate == null) ? string.Empty : toUnixTime((DateTime)endDate);

            return ServersProvider.GetDiskIOGraph(serverId, deviceName, startDate_unixtime, endDate_unixtime, mode, this.DefaultRegion, this.Identity);
        }
OpenStackMember