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\Compute;
19
20class InstanceGroupManagerActionsSummary extends \Google\Model
21{
22  /**
23   * @var int
24   */
25  public $abandoning;
26  /**
27   * @var int
28   */
29  public $creating;
30  /**
31   * @var int
32   */
33  public $creatingWithoutRetries;
34  /**
35   * @var int
36   */
37  public $deleting;
38  /**
39   * @var int
40   */
41  public $none;
42  /**
43   * @var int
44   */
45  public $recreating;
46  /**
47   * @var int
48   */
49  public $refreshing;
50  /**
51   * @var int
52   */
53  public $restarting;
54  /**
55   * @var int
56   */
57  public $resuming;
58  /**
59   * @var int
60   */
61  public $starting;
62  /**
63   * @var int
64   */
65  public $stopping;
66  /**
67   * @var int
68   */
69  public $suspending;
70  /**
71   * @var int
72   */
73  public $verifying;
74
75  /**
76   * @param int
77   */
78  public function setAbandoning($abandoning)
79  {
80    $this->abandoning = $abandoning;
81  }
82  /**
83   * @return int
84   */
85  public function getAbandoning()
86  {
87    return $this->abandoning;
88  }
89  /**
90   * @param int
91   */
92  public function setCreating($creating)
93  {
94    $this->creating = $creating;
95  }
96  /**
97   * @return int
98   */
99  public function getCreating()
100  {
101    return $this->creating;
102  }
103  /**
104   * @param int
105   */
106  public function setCreatingWithoutRetries($creatingWithoutRetries)
107  {
108    $this->creatingWithoutRetries = $creatingWithoutRetries;
109  }
110  /**
111   * @return int
112   */
113  public function getCreatingWithoutRetries()
114  {
115    return $this->creatingWithoutRetries;
116  }
117  /**
118   * @param int
119   */
120  public function setDeleting($deleting)
121  {
122    $this->deleting = $deleting;
123  }
124  /**
125   * @return int
126   */
127  public function getDeleting()
128  {
129    return $this->deleting;
130  }
131  /**
132   * @param int
133   */
134  public function setNone($none)
135  {
136    $this->none = $none;
137  }
138  /**
139   * @return int
140   */
141  public function getNone()
142  {
143    return $this->none;
144  }
145  /**
146   * @param int
147   */
148  public function setRecreating($recreating)
149  {
150    $this->recreating = $recreating;
151  }
152  /**
153   * @return int
154   */
155  public function getRecreating()
156  {
157    return $this->recreating;
158  }
159  /**
160   * @param int
161   */
162  public function setRefreshing($refreshing)
163  {
164    $this->refreshing = $refreshing;
165  }
166  /**
167   * @return int
168   */
169  public function getRefreshing()
170  {
171    return $this->refreshing;
172  }
173  /**
174   * @param int
175   */
176  public function setRestarting($restarting)
177  {
178    $this->restarting = $restarting;
179  }
180  /**
181   * @return int
182   */
183  public function getRestarting()
184  {
185    return $this->restarting;
186  }
187  /**
188   * @param int
189   */
190  public function setResuming($resuming)
191  {
192    $this->resuming = $resuming;
193  }
194  /**
195   * @return int
196   */
197  public function getResuming()
198  {
199    return $this->resuming;
200  }
201  /**
202   * @param int
203   */
204  public function setStarting($starting)
205  {
206    $this->starting = $starting;
207  }
208  /**
209   * @return int
210   */
211  public function getStarting()
212  {
213    return $this->starting;
214  }
215  /**
216   * @param int
217   */
218  public function setStopping($stopping)
219  {
220    $this->stopping = $stopping;
221  }
222  /**
223   * @return int
224   */
225  public function getStopping()
226  {
227    return $this->stopping;
228  }
229  /**
230   * @param int
231   */
232  public function setSuspending($suspending)
233  {
234    $this->suspending = $suspending;
235  }
236  /**
237   * @return int
238   */
239  public function getSuspending()
240  {
241    return $this->suspending;
242  }
243  /**
244   * @param int
245   */
246  public function setVerifying($verifying)
247  {
248    $this->verifying = $verifying;
249  }
250  /**
251   * @return int
252   */
253  public function getVerifying()
254  {
255    return $this->verifying;
256  }
257}
258
259// Adding a class alias for backwards compatibility with the previous class name.
260class_alias(InstanceGroupManagerActionsSummary::class, 'Google_Service_Compute_InstanceGroupManagerActionsSummary');
261