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\Directory; 19 20class ChromeOsDevice extends \Google\Collection 21{ 22 protected $collection_key = 'systemRamFreeReports'; 23 protected $activeTimeRangesType = ChromeOsDeviceActiveTimeRanges::class; 24 protected $activeTimeRangesDataType = 'array'; 25 /** 26 * @var string 27 */ 28 public $annotatedAssetId; 29 /** 30 * @var string 31 */ 32 public $annotatedLocation; 33 /** 34 * @var string 35 */ 36 public $annotatedUser; 37 /** 38 * @var string 39 */ 40 public $autoUpdateExpiration; 41 /** 42 * @var string 43 */ 44 public $bootMode; 45 protected $cpuInfoType = ChromeOsDeviceCpuInfo::class; 46 protected $cpuInfoDataType = 'array'; 47 protected $cpuStatusReportsType = ChromeOsDeviceCpuStatusReports::class; 48 protected $cpuStatusReportsDataType = 'array'; 49 protected $deviceFilesType = ChromeOsDeviceDeviceFiles::class; 50 protected $deviceFilesDataType = 'array'; 51 /** 52 * @var string 53 */ 54 public $deviceId; 55 protected $diskVolumeReportsType = ChromeOsDeviceDiskVolumeReports::class; 56 protected $diskVolumeReportsDataType = 'array'; 57 /** 58 * @var string 59 */ 60 public $dockMacAddress; 61 /** 62 * @var string 63 */ 64 public $etag; 65 /** 66 * @var string 67 */ 68 public $ethernetMacAddress; 69 /** 70 * @var string 71 */ 72 public $ethernetMacAddress0; 73 /** 74 * @var string 75 */ 76 public $firmwareVersion; 77 /** 78 * @var string 79 */ 80 public $kind; 81 /** 82 * @var string 83 */ 84 public $lastEnrollmentTime; 85 protected $lastKnownNetworkType = ChromeOsDeviceLastKnownNetwork::class; 86 protected $lastKnownNetworkDataType = 'array'; 87 /** 88 * @var string 89 */ 90 public $lastSync; 91 /** 92 * @var string 93 */ 94 public $macAddress; 95 /** 96 * @var string 97 */ 98 public $manufactureDate; 99 /** 100 * @var string 101 */ 102 public $meid; 103 /** 104 * @var string 105 */ 106 public $model; 107 /** 108 * @var string 109 */ 110 public $notes; 111 /** 112 * @var string 113 */ 114 public $orderNumber; 115 /** 116 * @var string 117 */ 118 public $orgUnitId; 119 /** 120 * @var string 121 */ 122 public $orgUnitPath; 123 /** 124 * @var string 125 */ 126 public $osVersion; 127 /** 128 * @var string 129 */ 130 public $platformVersion; 131 protected $recentUsersType = ChromeOsDeviceRecentUsers::class; 132 protected $recentUsersDataType = 'array'; 133 protected $screenshotFilesType = ChromeOsDeviceScreenshotFiles::class; 134 protected $screenshotFilesDataType = 'array'; 135 /** 136 * @var string 137 */ 138 public $serialNumber; 139 /** 140 * @var string 141 */ 142 public $status; 143 /** 144 * @var string 145 */ 146 public $supportEndDate; 147 protected $systemRamFreeReportsType = ChromeOsDeviceSystemRamFreeReports::class; 148 protected $systemRamFreeReportsDataType = 'array'; 149 /** 150 * @var string 151 */ 152 public $systemRamTotal; 153 protected $tpmVersionInfoType = ChromeOsDeviceTpmVersionInfo::class; 154 protected $tpmVersionInfoDataType = ''; 155 /** 156 * @var bool 157 */ 158 public $willAutoRenew; 159 160 /** 161 * @param ChromeOsDeviceActiveTimeRanges[] 162 */ 163 public function setActiveTimeRanges($activeTimeRanges) 164 { 165 $this->activeTimeRanges = $activeTimeRanges; 166 } 167 /** 168 * @return ChromeOsDeviceActiveTimeRanges[] 169 */ 170 public function getActiveTimeRanges() 171 { 172 return $this->activeTimeRanges; 173 } 174 /** 175 * @param string 176 */ 177 public function setAnnotatedAssetId($annotatedAssetId) 178 { 179 $this->annotatedAssetId = $annotatedAssetId; 180 } 181 /** 182 * @return string 183 */ 184 public function getAnnotatedAssetId() 185 { 186 return $this->annotatedAssetId; 187 } 188 /** 189 * @param string 190 */ 191 public function setAnnotatedLocation($annotatedLocation) 192 { 193 $this->annotatedLocation = $annotatedLocation; 194 } 195 /** 196 * @return string 197 */ 198 public function getAnnotatedLocation() 199 { 200 return $this->annotatedLocation; 201 } 202 /** 203 * @param string 204 */ 205 public function setAnnotatedUser($annotatedUser) 206 { 207 $this->annotatedUser = $annotatedUser; 208 } 209 /** 210 * @return string 211 */ 212 public function getAnnotatedUser() 213 { 214 return $this->annotatedUser; 215 } 216 /** 217 * @param string 218 */ 219 public function setAutoUpdateExpiration($autoUpdateExpiration) 220 { 221 $this->autoUpdateExpiration = $autoUpdateExpiration; 222 } 223 /** 224 * @return string 225 */ 226 public function getAutoUpdateExpiration() 227 { 228 return $this->autoUpdateExpiration; 229 } 230 /** 231 * @param string 232 */ 233 public function setBootMode($bootMode) 234 { 235 $this->bootMode = $bootMode; 236 } 237 /** 238 * @return string 239 */ 240 public function getBootMode() 241 { 242 return $this->bootMode; 243 } 244 /** 245 * @param ChromeOsDeviceCpuInfo[] 246 */ 247 public function setCpuInfo($cpuInfo) 248 { 249 $this->cpuInfo = $cpuInfo; 250 } 251 /** 252 * @return ChromeOsDeviceCpuInfo[] 253 */ 254 public function getCpuInfo() 255 { 256 return $this->cpuInfo; 257 } 258 /** 259 * @param ChromeOsDeviceCpuStatusReports[] 260 */ 261 public function setCpuStatusReports($cpuStatusReports) 262 { 263 $this->cpuStatusReports = $cpuStatusReports; 264 } 265 /** 266 * @return ChromeOsDeviceCpuStatusReports[] 267 */ 268 public function getCpuStatusReports() 269 { 270 return $this->cpuStatusReports; 271 } 272 /** 273 * @param ChromeOsDeviceDeviceFiles[] 274 */ 275 public function setDeviceFiles($deviceFiles) 276 { 277 $this->deviceFiles = $deviceFiles; 278 } 279 /** 280 * @return ChromeOsDeviceDeviceFiles[] 281 */ 282 public function getDeviceFiles() 283 { 284 return $this->deviceFiles; 285 } 286 /** 287 * @param string 288 */ 289 public function setDeviceId($deviceId) 290 { 291 $this->deviceId = $deviceId; 292 } 293 /** 294 * @return string 295 */ 296 public function getDeviceId() 297 { 298 return $this->deviceId; 299 } 300 /** 301 * @param ChromeOsDeviceDiskVolumeReports[] 302 */ 303 public function setDiskVolumeReports($diskVolumeReports) 304 { 305 $this->diskVolumeReports = $diskVolumeReports; 306 } 307 /** 308 * @return ChromeOsDeviceDiskVolumeReports[] 309 */ 310 public function getDiskVolumeReports() 311 { 312 return $this->diskVolumeReports; 313 } 314 /** 315 * @param string 316 */ 317 public function setDockMacAddress($dockMacAddress) 318 { 319 $this->dockMacAddress = $dockMacAddress; 320 } 321 /** 322 * @return string 323 */ 324 public function getDockMacAddress() 325 { 326 return $this->dockMacAddress; 327 } 328 /** 329 * @param string 330 */ 331 public function setEtag($etag) 332 { 333 $this->etag = $etag; 334 } 335 /** 336 * @return string 337 */ 338 public function getEtag() 339 { 340 return $this->etag; 341 } 342 /** 343 * @param string 344 */ 345 public function setEthernetMacAddress($ethernetMacAddress) 346 { 347 $this->ethernetMacAddress = $ethernetMacAddress; 348 } 349 /** 350 * @return string 351 */ 352 public function getEthernetMacAddress() 353 { 354 return $this->ethernetMacAddress; 355 } 356 /** 357 * @param string 358 */ 359 public function setEthernetMacAddress0($ethernetMacAddress0) 360 { 361 $this->ethernetMacAddress0 = $ethernetMacAddress0; 362 } 363 /** 364 * @return string 365 */ 366 public function getEthernetMacAddress0() 367 { 368 return $this->ethernetMacAddress0; 369 } 370 /** 371 * @param string 372 */ 373 public function setFirmwareVersion($firmwareVersion) 374 { 375 $this->firmwareVersion = $firmwareVersion; 376 } 377 /** 378 * @return string 379 */ 380 public function getFirmwareVersion() 381 { 382 return $this->firmwareVersion; 383 } 384 /** 385 * @param string 386 */ 387 public function setKind($kind) 388 { 389 $this->kind = $kind; 390 } 391 /** 392 * @return string 393 */ 394 public function getKind() 395 { 396 return $this->kind; 397 } 398 /** 399 * @param string 400 */ 401 public function setLastEnrollmentTime($lastEnrollmentTime) 402 { 403 $this->lastEnrollmentTime = $lastEnrollmentTime; 404 } 405 /** 406 * @return string 407 */ 408 public function getLastEnrollmentTime() 409 { 410 return $this->lastEnrollmentTime; 411 } 412 /** 413 * @param ChromeOsDeviceLastKnownNetwork[] 414 */ 415 public function setLastKnownNetwork($lastKnownNetwork) 416 { 417 $this->lastKnownNetwork = $lastKnownNetwork; 418 } 419 /** 420 * @return ChromeOsDeviceLastKnownNetwork[] 421 */ 422 public function getLastKnownNetwork() 423 { 424 return $this->lastKnownNetwork; 425 } 426 /** 427 * @param string 428 */ 429 public function setLastSync($lastSync) 430 { 431 $this->lastSync = $lastSync; 432 } 433 /** 434 * @return string 435 */ 436 public function getLastSync() 437 { 438 return $this->lastSync; 439 } 440 /** 441 * @param string 442 */ 443 public function setMacAddress($macAddress) 444 { 445 $this->macAddress = $macAddress; 446 } 447 /** 448 * @return string 449 */ 450 public function getMacAddress() 451 { 452 return $this->macAddress; 453 } 454 /** 455 * @param string 456 */ 457 public function setManufactureDate($manufactureDate) 458 { 459 $this->manufactureDate = $manufactureDate; 460 } 461 /** 462 * @return string 463 */ 464 public function getManufactureDate() 465 { 466 return $this->manufactureDate; 467 } 468 /** 469 * @param string 470 */ 471 public function setMeid($meid) 472 { 473 $this->meid = $meid; 474 } 475 /** 476 * @return string 477 */ 478 public function getMeid() 479 { 480 return $this->meid; 481 } 482 /** 483 * @param string 484 */ 485 public function setModel($model) 486 { 487 $this->model = $model; 488 } 489 /** 490 * @return string 491 */ 492 public function getModel() 493 { 494 return $this->model; 495 } 496 /** 497 * @param string 498 */ 499 public function setNotes($notes) 500 { 501 $this->notes = $notes; 502 } 503 /** 504 * @return string 505 */ 506 public function getNotes() 507 { 508 return $this->notes; 509 } 510 /** 511 * @param string 512 */ 513 public function setOrderNumber($orderNumber) 514 { 515 $this->orderNumber = $orderNumber; 516 } 517 /** 518 * @return string 519 */ 520 public function getOrderNumber() 521 { 522 return $this->orderNumber; 523 } 524 /** 525 * @param string 526 */ 527 public function setOrgUnitId($orgUnitId) 528 { 529 $this->orgUnitId = $orgUnitId; 530 } 531 /** 532 * @return string 533 */ 534 public function getOrgUnitId() 535 { 536 return $this->orgUnitId; 537 } 538 /** 539 * @param string 540 */ 541 public function setOrgUnitPath($orgUnitPath) 542 { 543 $this->orgUnitPath = $orgUnitPath; 544 } 545 /** 546 * @return string 547 */ 548 public function getOrgUnitPath() 549 { 550 return $this->orgUnitPath; 551 } 552 /** 553 * @param string 554 */ 555 public function setOsVersion($osVersion) 556 { 557 $this->osVersion = $osVersion; 558 } 559 /** 560 * @return string 561 */ 562 public function getOsVersion() 563 { 564 return $this->osVersion; 565 } 566 /** 567 * @param string 568 */ 569 public function setPlatformVersion($platformVersion) 570 { 571 $this->platformVersion = $platformVersion; 572 } 573 /** 574 * @return string 575 */ 576 public function getPlatformVersion() 577 { 578 return $this->platformVersion; 579 } 580 /** 581 * @param ChromeOsDeviceRecentUsers[] 582 */ 583 public function setRecentUsers($recentUsers) 584 { 585 $this->recentUsers = $recentUsers; 586 } 587 /** 588 * @return ChromeOsDeviceRecentUsers[] 589 */ 590 public function getRecentUsers() 591 { 592 return $this->recentUsers; 593 } 594 /** 595 * @param ChromeOsDeviceScreenshotFiles[] 596 */ 597 public function setScreenshotFiles($screenshotFiles) 598 { 599 $this->screenshotFiles = $screenshotFiles; 600 } 601 /** 602 * @return ChromeOsDeviceScreenshotFiles[] 603 */ 604 public function getScreenshotFiles() 605 { 606 return $this->screenshotFiles; 607 } 608 /** 609 * @param string 610 */ 611 public function setSerialNumber($serialNumber) 612 { 613 $this->serialNumber = $serialNumber; 614 } 615 /** 616 * @return string 617 */ 618 public function getSerialNumber() 619 { 620 return $this->serialNumber; 621 } 622 /** 623 * @param string 624 */ 625 public function setStatus($status) 626 { 627 $this->status = $status; 628 } 629 /** 630 * @return string 631 */ 632 public function getStatus() 633 { 634 return $this->status; 635 } 636 /** 637 * @param string 638 */ 639 public function setSupportEndDate($supportEndDate) 640 { 641 $this->supportEndDate = $supportEndDate; 642 } 643 /** 644 * @return string 645 */ 646 public function getSupportEndDate() 647 { 648 return $this->supportEndDate; 649 } 650 /** 651 * @param ChromeOsDeviceSystemRamFreeReports[] 652 */ 653 public function setSystemRamFreeReports($systemRamFreeReports) 654 { 655 $this->systemRamFreeReports = $systemRamFreeReports; 656 } 657 /** 658 * @return ChromeOsDeviceSystemRamFreeReports[] 659 */ 660 public function getSystemRamFreeReports() 661 { 662 return $this->systemRamFreeReports; 663 } 664 /** 665 * @param string 666 */ 667 public function setSystemRamTotal($systemRamTotal) 668 { 669 $this->systemRamTotal = $systemRamTotal; 670 } 671 /** 672 * @return string 673 */ 674 public function getSystemRamTotal() 675 { 676 return $this->systemRamTotal; 677 } 678 /** 679 * @param ChromeOsDeviceTpmVersionInfo 680 */ 681 public function setTpmVersionInfo(ChromeOsDeviceTpmVersionInfo $tpmVersionInfo) 682 { 683 $this->tpmVersionInfo = $tpmVersionInfo; 684 } 685 /** 686 * @return ChromeOsDeviceTpmVersionInfo 687 */ 688 public function getTpmVersionInfo() 689 { 690 return $this->tpmVersionInfo; 691 } 692 /** 693 * @param bool 694 */ 695 public function setWillAutoRenew($willAutoRenew) 696 { 697 $this->willAutoRenew = $willAutoRenew; 698 } 699 /** 700 * @return bool 701 */ 702 public function getWillAutoRenew() 703 { 704 return $this->willAutoRenew; 705 } 706} 707 708// Adding a class alias for backwards compatibility with the previous class name. 709class_alias(ChromeOsDevice::class, 'Google_Service_Directory_ChromeOsDevice'); 710