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\RemoteBuildExecution;
19
20class GoogleDevtoolsRemotebuildbotCommandEvents extends \Google\Model
21{
22  public $cmUsage;
23  public $dockerCacheHit;
24  public $dockerImageName;
25  public $inputCacheMiss;
26  public $numErrors;
27  public $numWarnings;
28  public $outputLocation;
29  public $usedAsyncContainer;
30
31  public function setCmUsage($cmUsage)
32  {
33    $this->cmUsage = $cmUsage;
34  }
35  public function getCmUsage()
36  {
37    return $this->cmUsage;
38  }
39  public function setDockerCacheHit($dockerCacheHit)
40  {
41    $this->dockerCacheHit = $dockerCacheHit;
42  }
43  public function getDockerCacheHit()
44  {
45    return $this->dockerCacheHit;
46  }
47  public function setDockerImageName($dockerImageName)
48  {
49    $this->dockerImageName = $dockerImageName;
50  }
51  public function getDockerImageName()
52  {
53    return $this->dockerImageName;
54  }
55  public function setInputCacheMiss($inputCacheMiss)
56  {
57    $this->inputCacheMiss = $inputCacheMiss;
58  }
59  public function getInputCacheMiss()
60  {
61    return $this->inputCacheMiss;
62  }
63  public function setNumErrors($numErrors)
64  {
65    $this->numErrors = $numErrors;
66  }
67  public function getNumErrors()
68  {
69    return $this->numErrors;
70  }
71  public function setNumWarnings($numWarnings)
72  {
73    $this->numWarnings = $numWarnings;
74  }
75  public function getNumWarnings()
76  {
77    return $this->numWarnings;
78  }
79  public function setOutputLocation($outputLocation)
80  {
81    $this->outputLocation = $outputLocation;
82  }
83  public function getOutputLocation()
84  {
85    return $this->outputLocation;
86  }
87  public function setUsedAsyncContainer($usedAsyncContainer)
88  {
89    $this->usedAsyncContainer = $usedAsyncContainer;
90  }
91  public function getUsedAsyncContainer()
92  {
93    return $this->usedAsyncContainer;
94  }
95}
96
97// Adding a class alias for backwards compatibility with the previous class name.
98class_alias(GoogleDevtoolsRemotebuildbotCommandEvents::class, 'Google_Service_RemoteBuildExecution_GoogleDevtoolsRemotebuildbotCommandEvents');
99