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\Storagetransfer;
19
20class TransferCounters extends \Google\Model
21{
22  /**
23   * @var string
24   */
25  public $bytesCopiedToSink;
26  /**
27   * @var string
28   */
29  public $bytesDeletedFromSink;
30  /**
31   * @var string
32   */
33  public $bytesDeletedFromSource;
34  /**
35   * @var string
36   */
37  public $bytesFailedToDeleteFromSink;
38  /**
39   * @var string
40   */
41  public $bytesFoundFromSource;
42  /**
43   * @var string
44   */
45  public $bytesFoundOnlyFromSink;
46  /**
47   * @var string
48   */
49  public $bytesFromSourceFailed;
50  /**
51   * @var string
52   */
53  public $bytesFromSourceSkippedBySync;
54  /**
55   * @var string
56   */
57  public $directoriesFailedToListFromSource;
58  /**
59   * @var string
60   */
61  public $directoriesFoundFromSource;
62  /**
63   * @var string
64   */
65  public $directoriesSuccessfullyListedFromSource;
66  /**
67   * @var string
68   */
69  public $intermediateObjectsCleanedUp;
70  /**
71   * @var string
72   */
73  public $intermediateObjectsFailedCleanedUp;
74  /**
75   * @var string
76   */
77  public $objectsCopiedToSink;
78  /**
79   * @var string
80   */
81  public $objectsDeletedFromSink;
82  /**
83   * @var string
84   */
85  public $objectsDeletedFromSource;
86  /**
87   * @var string
88   */
89  public $objectsFailedToDeleteFromSink;
90  /**
91   * @var string
92   */
93  public $objectsFoundFromSource;
94  /**
95   * @var string
96   */
97  public $objectsFoundOnlyFromSink;
98  /**
99   * @var string
100   */
101  public $objectsFromSourceFailed;
102  /**
103   * @var string
104   */
105  public $objectsFromSourceSkippedBySync;
106
107  /**
108   * @param string
109   */
110  public function setBytesCopiedToSink($bytesCopiedToSink)
111  {
112    $this->bytesCopiedToSink = $bytesCopiedToSink;
113  }
114  /**
115   * @return string
116   */
117  public function getBytesCopiedToSink()
118  {
119    return $this->bytesCopiedToSink;
120  }
121  /**
122   * @param string
123   */
124  public function setBytesDeletedFromSink($bytesDeletedFromSink)
125  {
126    $this->bytesDeletedFromSink = $bytesDeletedFromSink;
127  }
128  /**
129   * @return string
130   */
131  public function getBytesDeletedFromSink()
132  {
133    return $this->bytesDeletedFromSink;
134  }
135  /**
136   * @param string
137   */
138  public function setBytesDeletedFromSource($bytesDeletedFromSource)
139  {
140    $this->bytesDeletedFromSource = $bytesDeletedFromSource;
141  }
142  /**
143   * @return string
144   */
145  public function getBytesDeletedFromSource()
146  {
147    return $this->bytesDeletedFromSource;
148  }
149  /**
150   * @param string
151   */
152  public function setBytesFailedToDeleteFromSink($bytesFailedToDeleteFromSink)
153  {
154    $this->bytesFailedToDeleteFromSink = $bytesFailedToDeleteFromSink;
155  }
156  /**
157   * @return string
158   */
159  public function getBytesFailedToDeleteFromSink()
160  {
161    return $this->bytesFailedToDeleteFromSink;
162  }
163  /**
164   * @param string
165   */
166  public function setBytesFoundFromSource($bytesFoundFromSource)
167  {
168    $this->bytesFoundFromSource = $bytesFoundFromSource;
169  }
170  /**
171   * @return string
172   */
173  public function getBytesFoundFromSource()
174  {
175    return $this->bytesFoundFromSource;
176  }
177  /**
178   * @param string
179   */
180  public function setBytesFoundOnlyFromSink($bytesFoundOnlyFromSink)
181  {
182    $this->bytesFoundOnlyFromSink = $bytesFoundOnlyFromSink;
183  }
184  /**
185   * @return string
186   */
187  public function getBytesFoundOnlyFromSink()
188  {
189    return $this->bytesFoundOnlyFromSink;
190  }
191  /**
192   * @param string
193   */
194  public function setBytesFromSourceFailed($bytesFromSourceFailed)
195  {
196    $this->bytesFromSourceFailed = $bytesFromSourceFailed;
197  }
198  /**
199   * @return string
200   */
201  public function getBytesFromSourceFailed()
202  {
203    return $this->bytesFromSourceFailed;
204  }
205  /**
206   * @param string
207   */
208  public function setBytesFromSourceSkippedBySync($bytesFromSourceSkippedBySync)
209  {
210    $this->bytesFromSourceSkippedBySync = $bytesFromSourceSkippedBySync;
211  }
212  /**
213   * @return string
214   */
215  public function getBytesFromSourceSkippedBySync()
216  {
217    return $this->bytesFromSourceSkippedBySync;
218  }
219  /**
220   * @param string
221   */
222  public function setDirectoriesFailedToListFromSource($directoriesFailedToListFromSource)
223  {
224    $this->directoriesFailedToListFromSource = $directoriesFailedToListFromSource;
225  }
226  /**
227   * @return string
228   */
229  public function getDirectoriesFailedToListFromSource()
230  {
231    return $this->directoriesFailedToListFromSource;
232  }
233  /**
234   * @param string
235   */
236  public function setDirectoriesFoundFromSource($directoriesFoundFromSource)
237  {
238    $this->directoriesFoundFromSource = $directoriesFoundFromSource;
239  }
240  /**
241   * @return string
242   */
243  public function getDirectoriesFoundFromSource()
244  {
245    return $this->directoriesFoundFromSource;
246  }
247  /**
248   * @param string
249   */
250  public function setDirectoriesSuccessfullyListedFromSource($directoriesSuccessfullyListedFromSource)
251  {
252    $this->directoriesSuccessfullyListedFromSource = $directoriesSuccessfullyListedFromSource;
253  }
254  /**
255   * @return string
256   */
257  public function getDirectoriesSuccessfullyListedFromSource()
258  {
259    return $this->directoriesSuccessfullyListedFromSource;
260  }
261  /**
262   * @param string
263   */
264  public function setIntermediateObjectsCleanedUp($intermediateObjectsCleanedUp)
265  {
266    $this->intermediateObjectsCleanedUp = $intermediateObjectsCleanedUp;
267  }
268  /**
269   * @return string
270   */
271  public function getIntermediateObjectsCleanedUp()
272  {
273    return $this->intermediateObjectsCleanedUp;
274  }
275  /**
276   * @param string
277   */
278  public function setIntermediateObjectsFailedCleanedUp($intermediateObjectsFailedCleanedUp)
279  {
280    $this->intermediateObjectsFailedCleanedUp = $intermediateObjectsFailedCleanedUp;
281  }
282  /**
283   * @return string
284   */
285  public function getIntermediateObjectsFailedCleanedUp()
286  {
287    return $this->intermediateObjectsFailedCleanedUp;
288  }
289  /**
290   * @param string
291   */
292  public function setObjectsCopiedToSink($objectsCopiedToSink)
293  {
294    $this->objectsCopiedToSink = $objectsCopiedToSink;
295  }
296  /**
297   * @return string
298   */
299  public function getObjectsCopiedToSink()
300  {
301    return $this->objectsCopiedToSink;
302  }
303  /**
304   * @param string
305   */
306  public function setObjectsDeletedFromSink($objectsDeletedFromSink)
307  {
308    $this->objectsDeletedFromSink = $objectsDeletedFromSink;
309  }
310  /**
311   * @return string
312   */
313  public function getObjectsDeletedFromSink()
314  {
315    return $this->objectsDeletedFromSink;
316  }
317  /**
318   * @param string
319   */
320  public function setObjectsDeletedFromSource($objectsDeletedFromSource)
321  {
322    $this->objectsDeletedFromSource = $objectsDeletedFromSource;
323  }
324  /**
325   * @return string
326   */
327  public function getObjectsDeletedFromSource()
328  {
329    return $this->objectsDeletedFromSource;
330  }
331  /**
332   * @param string
333   */
334  public function setObjectsFailedToDeleteFromSink($objectsFailedToDeleteFromSink)
335  {
336    $this->objectsFailedToDeleteFromSink = $objectsFailedToDeleteFromSink;
337  }
338  /**
339   * @return string
340   */
341  public function getObjectsFailedToDeleteFromSink()
342  {
343    return $this->objectsFailedToDeleteFromSink;
344  }
345  /**
346   * @param string
347   */
348  public function setObjectsFoundFromSource($objectsFoundFromSource)
349  {
350    $this->objectsFoundFromSource = $objectsFoundFromSource;
351  }
352  /**
353   * @return string
354   */
355  public function getObjectsFoundFromSource()
356  {
357    return $this->objectsFoundFromSource;
358  }
359  /**
360   * @param string
361   */
362  public function setObjectsFoundOnlyFromSink($objectsFoundOnlyFromSink)
363  {
364    $this->objectsFoundOnlyFromSink = $objectsFoundOnlyFromSink;
365  }
366  /**
367   * @return string
368   */
369  public function getObjectsFoundOnlyFromSink()
370  {
371    return $this->objectsFoundOnlyFromSink;
372  }
373  /**
374   * @param string
375   */
376  public function setObjectsFromSourceFailed($objectsFromSourceFailed)
377  {
378    $this->objectsFromSourceFailed = $objectsFromSourceFailed;
379  }
380  /**
381   * @return string
382   */
383  public function getObjectsFromSourceFailed()
384  {
385    return $this->objectsFromSourceFailed;
386  }
387  /**
388   * @param string
389   */
390  public function setObjectsFromSourceSkippedBySync($objectsFromSourceSkippedBySync)
391  {
392    $this->objectsFromSourceSkippedBySync = $objectsFromSourceSkippedBySync;
393  }
394  /**
395   * @return string
396   */
397  public function getObjectsFromSourceSkippedBySync()
398  {
399    return $this->objectsFromSourceSkippedBySync;
400  }
401}
402
403// Adding a class alias for backwards compatibility with the previous class name.
404class_alias(TransferCounters::class, 'Google_Service_Storagetransfer_TransferCounters');
405