1<?php
2/*
3 * Copyright 2014 Google Inc.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6 * use this file except in compliance with the License. You may obtain a copy of
7 * the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14 * License for the specific language governing permissions and limitations under
15 * the License.
16 */
17
18namespace Google\Service\ChromeManagement;
19
20class GoogleChromeManagementV1DiskInfo extends \Google\Collection
21{
22  protected $collection_key = 'volumeIds';
23  /**
24   * @var string
25   */
26  public $bytesReadThisSession;
27  /**
28   * @var string
29   */
30  public $bytesWrittenThisSession;
31  /**
32   * @var string
33   */
34  public $discardTimeThisSession;
35  /**
36   * @var string
37   */
38  public $health;
39  /**
40   * @var string
41   */
42  public $ioTimeThisSession;
43  /**
44   * @var string
45   */
46  public $manufacturer;
47  /**
48   * @var string
49   */
50  public $model;
51  /**
52   * @var string
53   */
54  public $readTimeThisSession;
55  /**
56   * @var string
57   */
58  public $serialNumber;
59  /**
60   * @var string
61   */
62  public $sizeBytes;
63  /**
64   * @var string
65   */
66  public $type;
67  /**
68   * @var string[]
69   */
70  public $volumeIds;
71  /**
72   * @var string
73   */
74  public $writeTimeThisSession;
75
76  /**
77   * @param string
78   */
79  public function setBytesReadThisSession($bytesReadThisSession)
80  {
81    $this->bytesReadThisSession = $bytesReadThisSession;
82  }
83  /**
84   * @return string
85   */
86  public function getBytesReadThisSession()
87  {
88    return $this->bytesReadThisSession;
89  }
90  /**
91   * @param string
92   */
93  public function setBytesWrittenThisSession($bytesWrittenThisSession)
94  {
95    $this->bytesWrittenThisSession = $bytesWrittenThisSession;
96  }
97  /**
98   * @return string
99   */
100  public function getBytesWrittenThisSession()
101  {
102    return $this->bytesWrittenThisSession;
103  }
104  /**
105   * @param string
106   */
107  public function setDiscardTimeThisSession($discardTimeThisSession)
108  {
109    $this->discardTimeThisSession = $discardTimeThisSession;
110  }
111  /**
112   * @return string
113   */
114  public function getDiscardTimeThisSession()
115  {
116    return $this->discardTimeThisSession;
117  }
118  /**
119   * @param string
120   */
121  public function setHealth($health)
122  {
123    $this->health = $health;
124  }
125  /**
126   * @return string
127   */
128  public function getHealth()
129  {
130    return $this->health;
131  }
132  /**
133   * @param string
134   */
135  public function setIoTimeThisSession($ioTimeThisSession)
136  {
137    $this->ioTimeThisSession = $ioTimeThisSession;
138  }
139  /**
140   * @return string
141   */
142  public function getIoTimeThisSession()
143  {
144    return $this->ioTimeThisSession;
145  }
146  /**
147   * @param string
148   */
149  public function setManufacturer($manufacturer)
150  {
151    $this->manufacturer = $manufacturer;
152  }
153  /**
154   * @return string
155   */
156  public function getManufacturer()
157  {
158    return $this->manufacturer;
159  }
160  /**
161   * @param string
162   */
163  public function setModel($model)
164  {
165    $this->model = $model;
166  }
167  /**
168   * @return string
169   */
170  public function getModel()
171  {
172    return $this->model;
173  }
174  /**
175   * @param string
176   */
177  public function setReadTimeThisSession($readTimeThisSession)
178  {
179    $this->readTimeThisSession = $readTimeThisSession;
180  }
181  /**
182   * @return string
183   */
184  public function getReadTimeThisSession()
185  {
186    return $this->readTimeThisSession;
187  }
188  /**
189   * @param string
190   */
191  public function setSerialNumber($serialNumber)
192  {
193    $this->serialNumber = $serialNumber;
194  }
195  /**
196   * @return string
197   */
198  public function getSerialNumber()
199  {
200    return $this->serialNumber;
201  }
202  /**
203   * @param string
204   */
205  public function setSizeBytes($sizeBytes)
206  {
207    $this->sizeBytes = $sizeBytes;
208  }
209  /**
210   * @return string
211   */
212  public function getSizeBytes()
213  {
214    return $this->sizeBytes;
215  }
216  /**
217   * @param string
218   */
219  public function setType($type)
220  {
221    $this->type = $type;
222  }
223  /**
224   * @return string
225   */
226  public function getType()
227  {
228    return $this->type;
229  }
230  /**
231   * @param string[]
232   */
233  public function setVolumeIds($volumeIds)
234  {
235    $this->volumeIds = $volumeIds;
236  }
237  /**
238   * @return string[]
239   */
240  public function getVolumeIds()
241  {
242    return $this->volumeIds;
243  }
244  /**
245   * @param string
246   */
247  public function setWriteTimeThisSession($writeTimeThisSession)
248  {
249    $this->writeTimeThisSession = $writeTimeThisSession;
250  }
251  /**
252   * @return string
253   */
254  public function getWriteTimeThisSession()
255  {
256    return $this->writeTimeThisSession;
257  }
258}
259
260// Adding a class alias for backwards compatibility with the previous class name.
261class_alias(GoogleChromeManagementV1DiskInfo::class, 'Google_Service_ChromeManagement_GoogleChromeManagementV1DiskInfo');
262