| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <?php
- /**
- * Copyright (C) Alibaba Cloud Computing
- * All rights reserved
- */
- require_once realpath(dirname(__FILE__) . '/Response.php');
- require_once realpath(dirname(__FILE__) . '/Histogram.php');
- /**
- * The response of the GetHistograms API from log service.
- *
- * @author log service dev
- */
- class Aliyun_Log_Models_GetHistogramsResponse extends Aliyun_Log_Models_Response {
-
- /**
- * @var string histogram query status(Complete or InComplete)
- */
- private $progress;
-
- /**
- * @var integer logs' count that current query hits
- */
- private $count;
-
- /**
- * @var array Aliyun_Log_Models_Histogram array, histograms on the requested time range: [from, to)
- */
- private $histograms; // List<Aliyun_Log_Models_Histogram>
-
- /**
- * Aliyun_Log_Models_GetHistogramsResponse constructor
- *
- * @param array $resp
- * GetHistogramsResponse HTTP response body
- * @param array $header
- * GetHistogramsResponse HTTP response header
- */
- public function __construct($resp, $header) {
- parent::__construct ( $header );
- $this->progress = $header ['x-log-progress'];
- $this->count = $header ['x-log-count'];
- $this->histograms = array ();
- foreach ( $resp as $data )
- $this->histograms [] = new Aliyun_Log_Models_Histogram ( $data ['from'], $data ['to'], $data ['count'], $data ['progress'] );
- }
-
- /**
- * Check if the histogram is completed
- *
- * @return bool true if this histogram is completed
- */
- public function isCompleted() {
- return $this->progress == 'Complete';
- }
-
- /**
- * Get total logs' count that current query hits
- *
- * @return integer total logs' count that current query hits
- */
- public function getTotalCount() {
- return $this->count;
- }
-
- /**
- * Get histograms on the requested time range: [from, to)
- *
- * @return array Aliyun_Log_Models_Histogram array, histograms on the requested time range
- */
- public function getHistograms() {
- return $this->histograms;
- }
- }
|