source: vendor/google/apiclient-services/src/ChromeManagement/GoogleChromeManagementV1TelemetryDevice.php@ f9c482b

Last change on this file since f9c482b was f9c482b, checked in by Vlado 222039 <vlado.popovski@…>, 9 days ago

Upload new project files

  • Property mode set to 100644
File size: 12.9 KB
Line 
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 GoogleChromeManagementV1TelemetryDevice extends \Google\Collection
21{
22 protected $collection_key = 'thunderboltInfo';
23 protected $appReportType = GoogleChromeManagementV1AppReport::class;
24 protected $appReportDataType = 'array';
25 protected $audioStatusReportType = GoogleChromeManagementV1AudioStatusReport::class;
26 protected $audioStatusReportDataType = 'array';
27 protected $batteryInfoType = GoogleChromeManagementV1BatteryInfo::class;
28 protected $batteryInfoDataType = 'array';
29 protected $batteryStatusReportType = GoogleChromeManagementV1BatteryStatusReport::class;
30 protected $batteryStatusReportDataType = 'array';
31 protected $bootPerformanceReportType = GoogleChromeManagementV1BootPerformanceReport::class;
32 protected $bootPerformanceReportDataType = 'array';
33 protected $cpuInfoType = GoogleChromeManagementV1CpuInfo::class;
34 protected $cpuInfoDataType = 'array';
35 protected $cpuStatusReportType = GoogleChromeManagementV1CpuStatusReport::class;
36 protected $cpuStatusReportDataType = 'array';
37 /**
38 * @var string
39 */
40 public $customer;
41 /**
42 * @var string
43 */
44 public $deviceId;
45 protected $graphicsInfoType = GoogleChromeManagementV1GraphicsInfo::class;
46 protected $graphicsInfoDataType = '';
47 protected $graphicsStatusReportType = GoogleChromeManagementV1GraphicsStatusReport::class;
48 protected $graphicsStatusReportDataType = 'array';
49 protected $heartbeatStatusReportType = GoogleChromeManagementV1HeartbeatStatusReport::class;
50 protected $heartbeatStatusReportDataType = 'array';
51 protected $kioskAppStatusReportType = GoogleChromeManagementV1KioskAppStatusReport::class;
52 protected $kioskAppStatusReportDataType = 'array';
53 protected $memoryInfoType = GoogleChromeManagementV1MemoryInfo::class;
54 protected $memoryInfoDataType = '';
55 protected $memoryStatusReportType = GoogleChromeManagementV1MemoryStatusReport::class;
56 protected $memoryStatusReportDataType = 'array';
57 /**
58 * @var string
59 */
60 public $name;
61 protected $networkBandwidthReportType = GoogleChromeManagementV1NetworkBandwidthReport::class;
62 protected $networkBandwidthReportDataType = 'array';
63 protected $networkDiagnosticsReportType = GoogleChromeManagementV1NetworkDiagnosticsReport::class;
64 protected $networkDiagnosticsReportDataType = 'array';
65 protected $networkInfoType = GoogleChromeManagementV1NetworkInfo::class;
66 protected $networkInfoDataType = '';
67 protected $networkStatusReportType = GoogleChromeManagementV1NetworkStatusReport::class;
68 protected $networkStatusReportDataType = 'array';
69 /**
70 * @var string
71 */
72 public $orgUnitId;
73 protected $osUpdateStatusType = GoogleChromeManagementV1OsUpdateStatus::class;
74 protected $osUpdateStatusDataType = 'array';
75 protected $peripheralsReportType = GoogleChromeManagementV1PeripheralsReport::class;
76 protected $peripheralsReportDataType = 'array';
77 protected $runtimeCountersReportType = GoogleChromeManagementV1RuntimeCountersReport::class;
78 protected $runtimeCountersReportDataType = 'array';
79 /**
80 * @var string
81 */
82 public $serialNumber;
83 protected $storageInfoType = GoogleChromeManagementV1StorageInfo::class;
84 protected $storageInfoDataType = '';
85 protected $storageStatusReportType = GoogleChromeManagementV1StorageStatusReport::class;
86 protected $storageStatusReportDataType = 'array';
87 protected $thunderboltInfoType = GoogleChromeManagementV1ThunderboltInfo::class;
88 protected $thunderboltInfoDataType = 'array';
89
90 /**
91 * @param GoogleChromeManagementV1AppReport[]
92 */
93 public function setAppReport($appReport)
94 {
95 $this->appReport = $appReport;
96 }
97 /**
98 * @return GoogleChromeManagementV1AppReport[]
99 */
100 public function getAppReport()
101 {
102 return $this->appReport;
103 }
104 /**
105 * @param GoogleChromeManagementV1AudioStatusReport[]
106 */
107 public function setAudioStatusReport($audioStatusReport)
108 {
109 $this->audioStatusReport = $audioStatusReport;
110 }
111 /**
112 * @return GoogleChromeManagementV1AudioStatusReport[]
113 */
114 public function getAudioStatusReport()
115 {
116 return $this->audioStatusReport;
117 }
118 /**
119 * @param GoogleChromeManagementV1BatteryInfo[]
120 */
121 public function setBatteryInfo($batteryInfo)
122 {
123 $this->batteryInfo = $batteryInfo;
124 }
125 /**
126 * @return GoogleChromeManagementV1BatteryInfo[]
127 */
128 public function getBatteryInfo()
129 {
130 return $this->batteryInfo;
131 }
132 /**
133 * @param GoogleChromeManagementV1BatteryStatusReport[]
134 */
135 public function setBatteryStatusReport($batteryStatusReport)
136 {
137 $this->batteryStatusReport = $batteryStatusReport;
138 }
139 /**
140 * @return GoogleChromeManagementV1BatteryStatusReport[]
141 */
142 public function getBatteryStatusReport()
143 {
144 return $this->batteryStatusReport;
145 }
146 /**
147 * @param GoogleChromeManagementV1BootPerformanceReport[]
148 */
149 public function setBootPerformanceReport($bootPerformanceReport)
150 {
151 $this->bootPerformanceReport = $bootPerformanceReport;
152 }
153 /**
154 * @return GoogleChromeManagementV1BootPerformanceReport[]
155 */
156 public function getBootPerformanceReport()
157 {
158 return $this->bootPerformanceReport;
159 }
160 /**
161 * @param GoogleChromeManagementV1CpuInfo[]
162 */
163 public function setCpuInfo($cpuInfo)
164 {
165 $this->cpuInfo = $cpuInfo;
166 }
167 /**
168 * @return GoogleChromeManagementV1CpuInfo[]
169 */
170 public function getCpuInfo()
171 {
172 return $this->cpuInfo;
173 }
174 /**
175 * @param GoogleChromeManagementV1CpuStatusReport[]
176 */
177 public function setCpuStatusReport($cpuStatusReport)
178 {
179 $this->cpuStatusReport = $cpuStatusReport;
180 }
181 /**
182 * @return GoogleChromeManagementV1CpuStatusReport[]
183 */
184 public function getCpuStatusReport()
185 {
186 return $this->cpuStatusReport;
187 }
188 /**
189 * @param string
190 */
191 public function setCustomer($customer)
192 {
193 $this->customer = $customer;
194 }
195 /**
196 * @return string
197 */
198 public function getCustomer()
199 {
200 return $this->customer;
201 }
202 /**
203 * @param string
204 */
205 public function setDeviceId($deviceId)
206 {
207 $this->deviceId = $deviceId;
208 }
209 /**
210 * @return string
211 */
212 public function getDeviceId()
213 {
214 return $this->deviceId;
215 }
216 /**
217 * @param GoogleChromeManagementV1GraphicsInfo
218 */
219 public function setGraphicsInfo(GoogleChromeManagementV1GraphicsInfo $graphicsInfo)
220 {
221 $this->graphicsInfo = $graphicsInfo;
222 }
223 /**
224 * @return GoogleChromeManagementV1GraphicsInfo
225 */
226 public function getGraphicsInfo()
227 {
228 return $this->graphicsInfo;
229 }
230 /**
231 * @param GoogleChromeManagementV1GraphicsStatusReport[]
232 */
233 public function setGraphicsStatusReport($graphicsStatusReport)
234 {
235 $this->graphicsStatusReport = $graphicsStatusReport;
236 }
237 /**
238 * @return GoogleChromeManagementV1GraphicsStatusReport[]
239 */
240 public function getGraphicsStatusReport()
241 {
242 return $this->graphicsStatusReport;
243 }
244 /**
245 * @param GoogleChromeManagementV1HeartbeatStatusReport[]
246 */
247 public function setHeartbeatStatusReport($heartbeatStatusReport)
248 {
249 $this->heartbeatStatusReport = $heartbeatStatusReport;
250 }
251 /**
252 * @return GoogleChromeManagementV1HeartbeatStatusReport[]
253 */
254 public function getHeartbeatStatusReport()
255 {
256 return $this->heartbeatStatusReport;
257 }
258 /**
259 * @param GoogleChromeManagementV1KioskAppStatusReport[]
260 */
261 public function setKioskAppStatusReport($kioskAppStatusReport)
262 {
263 $this->kioskAppStatusReport = $kioskAppStatusReport;
264 }
265 /**
266 * @return GoogleChromeManagementV1KioskAppStatusReport[]
267 */
268 public function getKioskAppStatusReport()
269 {
270 return $this->kioskAppStatusReport;
271 }
272 /**
273 * @param GoogleChromeManagementV1MemoryInfo
274 */
275 public function setMemoryInfo(GoogleChromeManagementV1MemoryInfo $memoryInfo)
276 {
277 $this->memoryInfo = $memoryInfo;
278 }
279 /**
280 * @return GoogleChromeManagementV1MemoryInfo
281 */
282 public function getMemoryInfo()
283 {
284 return $this->memoryInfo;
285 }
286 /**
287 * @param GoogleChromeManagementV1MemoryStatusReport[]
288 */
289 public function setMemoryStatusReport($memoryStatusReport)
290 {
291 $this->memoryStatusReport = $memoryStatusReport;
292 }
293 /**
294 * @return GoogleChromeManagementV1MemoryStatusReport[]
295 */
296 public function getMemoryStatusReport()
297 {
298 return $this->memoryStatusReport;
299 }
300 /**
301 * @param string
302 */
303 public function setName($name)
304 {
305 $this->name = $name;
306 }
307 /**
308 * @return string
309 */
310 public function getName()
311 {
312 return $this->name;
313 }
314 /**
315 * @param GoogleChromeManagementV1NetworkBandwidthReport[]
316 */
317 public function setNetworkBandwidthReport($networkBandwidthReport)
318 {
319 $this->networkBandwidthReport = $networkBandwidthReport;
320 }
321 /**
322 * @return GoogleChromeManagementV1NetworkBandwidthReport[]
323 */
324 public function getNetworkBandwidthReport()
325 {
326 return $this->networkBandwidthReport;
327 }
328 /**
329 * @param GoogleChromeManagementV1NetworkDiagnosticsReport[]
330 */
331 public function setNetworkDiagnosticsReport($networkDiagnosticsReport)
332 {
333 $this->networkDiagnosticsReport = $networkDiagnosticsReport;
334 }
335 /**
336 * @return GoogleChromeManagementV1NetworkDiagnosticsReport[]
337 */
338 public function getNetworkDiagnosticsReport()
339 {
340 return $this->networkDiagnosticsReport;
341 }
342 /**
343 * @param GoogleChromeManagementV1NetworkInfo
344 */
345 public function setNetworkInfo(GoogleChromeManagementV1NetworkInfo $networkInfo)
346 {
347 $this->networkInfo = $networkInfo;
348 }
349 /**
350 * @return GoogleChromeManagementV1NetworkInfo
351 */
352 public function getNetworkInfo()
353 {
354 return $this->networkInfo;
355 }
356 /**
357 * @param GoogleChromeManagementV1NetworkStatusReport[]
358 */
359 public function setNetworkStatusReport($networkStatusReport)
360 {
361 $this->networkStatusReport = $networkStatusReport;
362 }
363 /**
364 * @return GoogleChromeManagementV1NetworkStatusReport[]
365 */
366 public function getNetworkStatusReport()
367 {
368 return $this->networkStatusReport;
369 }
370 /**
371 * @param string
372 */
373 public function setOrgUnitId($orgUnitId)
374 {
375 $this->orgUnitId = $orgUnitId;
376 }
377 /**
378 * @return string
379 */
380 public function getOrgUnitId()
381 {
382 return $this->orgUnitId;
383 }
384 /**
385 * @param GoogleChromeManagementV1OsUpdateStatus[]
386 */
387 public function setOsUpdateStatus($osUpdateStatus)
388 {
389 $this->osUpdateStatus = $osUpdateStatus;
390 }
391 /**
392 * @return GoogleChromeManagementV1OsUpdateStatus[]
393 */
394 public function getOsUpdateStatus()
395 {
396 return $this->osUpdateStatus;
397 }
398 /**
399 * @param GoogleChromeManagementV1PeripheralsReport[]
400 */
401 public function setPeripheralsReport($peripheralsReport)
402 {
403 $this->peripheralsReport = $peripheralsReport;
404 }
405 /**
406 * @return GoogleChromeManagementV1PeripheralsReport[]
407 */
408 public function getPeripheralsReport()
409 {
410 return $this->peripheralsReport;
411 }
412 /**
413 * @param GoogleChromeManagementV1RuntimeCountersReport[]
414 */
415 public function setRuntimeCountersReport($runtimeCountersReport)
416 {
417 $this->runtimeCountersReport = $runtimeCountersReport;
418 }
419 /**
420 * @return GoogleChromeManagementV1RuntimeCountersReport[]
421 */
422 public function getRuntimeCountersReport()
423 {
424 return $this->runtimeCountersReport;
425 }
426 /**
427 * @param string
428 */
429 public function setSerialNumber($serialNumber)
430 {
431 $this->serialNumber = $serialNumber;
432 }
433 /**
434 * @return string
435 */
436 public function getSerialNumber()
437 {
438 return $this->serialNumber;
439 }
440 /**
441 * @param GoogleChromeManagementV1StorageInfo
442 */
443 public function setStorageInfo(GoogleChromeManagementV1StorageInfo $storageInfo)
444 {
445 $this->storageInfo = $storageInfo;
446 }
447 /**
448 * @return GoogleChromeManagementV1StorageInfo
449 */
450 public function getStorageInfo()
451 {
452 return $this->storageInfo;
453 }
454 /**
455 * @param GoogleChromeManagementV1StorageStatusReport[]
456 */
457 public function setStorageStatusReport($storageStatusReport)
458 {
459 $this->storageStatusReport = $storageStatusReport;
460 }
461 /**
462 * @return GoogleChromeManagementV1StorageStatusReport[]
463 */
464 public function getStorageStatusReport()
465 {
466 return $this->storageStatusReport;
467 }
468 /**
469 * @param GoogleChromeManagementV1ThunderboltInfo[]
470 */
471 public function setThunderboltInfo($thunderboltInfo)
472 {
473 $this->thunderboltInfo = $thunderboltInfo;
474 }
475 /**
476 * @return GoogleChromeManagementV1ThunderboltInfo[]
477 */
478 public function getThunderboltInfo()
479 {
480 return $this->thunderboltInfo;
481 }
482}
483
484// Adding a class alias for backwards compatibility with the previous class name.
485class_alias(GoogleChromeManagementV1TelemetryDevice::class, 'Google_Service_ChromeManagement_GoogleChromeManagementV1TelemetryDevice');
Note: See TracBrowser for help on using the repository browser.