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 |
|
---|
18 | namespace Google\Service\CloudAlloyDBAdmin;
|
---|
19 |
|
---|
20 | class Backup extends \Google\Model
|
---|
21 | {
|
---|
22 | /**
|
---|
23 | * @var string[]
|
---|
24 | */
|
---|
25 | public $annotations;
|
---|
26 | /**
|
---|
27 | * @var string
|
---|
28 | */
|
---|
29 | public $clusterName;
|
---|
30 | /**
|
---|
31 | * @var string
|
---|
32 | */
|
---|
33 | public $clusterUid;
|
---|
34 | /**
|
---|
35 | * @var string
|
---|
36 | */
|
---|
37 | public $createTime;
|
---|
38 | /**
|
---|
39 | * @var string
|
---|
40 | */
|
---|
41 | public $databaseVersion;
|
---|
42 | /**
|
---|
43 | * @var string
|
---|
44 | */
|
---|
45 | public $deleteTime;
|
---|
46 | /**
|
---|
47 | * @var string
|
---|
48 | */
|
---|
49 | public $description;
|
---|
50 | /**
|
---|
51 | * @var string
|
---|
52 | */
|
---|
53 | public $displayName;
|
---|
54 | protected $encryptionConfigType = EncryptionConfig::class;
|
---|
55 | protected $encryptionConfigDataType = '';
|
---|
56 | protected $encryptionInfoType = EncryptionInfo::class;
|
---|
57 | protected $encryptionInfoDataType = '';
|
---|
58 | /**
|
---|
59 | * @var string
|
---|
60 | */
|
---|
61 | public $etag;
|
---|
62 | protected $expiryQuantityType = QuantityBasedExpiry::class;
|
---|
63 | protected $expiryQuantityDataType = '';
|
---|
64 | /**
|
---|
65 | * @var string
|
---|
66 | */
|
---|
67 | public $expiryTime;
|
---|
68 | /**
|
---|
69 | * @var string[]
|
---|
70 | */
|
---|
71 | public $labels;
|
---|
72 | /**
|
---|
73 | * @var string
|
---|
74 | */
|
---|
75 | public $name;
|
---|
76 | /**
|
---|
77 | * @var bool
|
---|
78 | */
|
---|
79 | public $reconciling;
|
---|
80 | /**
|
---|
81 | * @var bool
|
---|
82 | */
|
---|
83 | public $satisfiesPzs;
|
---|
84 | /**
|
---|
85 | * @var string
|
---|
86 | */
|
---|
87 | public $sizeBytes;
|
---|
88 | /**
|
---|
89 | * @var string
|
---|
90 | */
|
---|
91 | public $state;
|
---|
92 | /**
|
---|
93 | * @var string[]
|
---|
94 | */
|
---|
95 | public $tags;
|
---|
96 | /**
|
---|
97 | * @var string
|
---|
98 | */
|
---|
99 | public $type;
|
---|
100 | /**
|
---|
101 | * @var string
|
---|
102 | */
|
---|
103 | public $uid;
|
---|
104 | /**
|
---|
105 | * @var string
|
---|
106 | */
|
---|
107 | public $updateTime;
|
---|
108 |
|
---|
109 | /**
|
---|
110 | * @param string[]
|
---|
111 | */
|
---|
112 | public function setAnnotations($annotations)
|
---|
113 | {
|
---|
114 | $this->annotations = $annotations;
|
---|
115 | }
|
---|
116 | /**
|
---|
117 | * @return string[]
|
---|
118 | */
|
---|
119 | public function getAnnotations()
|
---|
120 | {
|
---|
121 | return $this->annotations;
|
---|
122 | }
|
---|
123 | /**
|
---|
124 | * @param string
|
---|
125 | */
|
---|
126 | public function setClusterName($clusterName)
|
---|
127 | {
|
---|
128 | $this->clusterName = $clusterName;
|
---|
129 | }
|
---|
130 | /**
|
---|
131 | * @return string
|
---|
132 | */
|
---|
133 | public function getClusterName()
|
---|
134 | {
|
---|
135 | return $this->clusterName;
|
---|
136 | }
|
---|
137 | /**
|
---|
138 | * @param string
|
---|
139 | */
|
---|
140 | public function setClusterUid($clusterUid)
|
---|
141 | {
|
---|
142 | $this->clusterUid = $clusterUid;
|
---|
143 | }
|
---|
144 | /**
|
---|
145 | * @return string
|
---|
146 | */
|
---|
147 | public function getClusterUid()
|
---|
148 | {
|
---|
149 | return $this->clusterUid;
|
---|
150 | }
|
---|
151 | /**
|
---|
152 | * @param string
|
---|
153 | */
|
---|
154 | public function setCreateTime($createTime)
|
---|
155 | {
|
---|
156 | $this->createTime = $createTime;
|
---|
157 | }
|
---|
158 | /**
|
---|
159 | * @return string
|
---|
160 | */
|
---|
161 | public function getCreateTime()
|
---|
162 | {
|
---|
163 | return $this->createTime;
|
---|
164 | }
|
---|
165 | /**
|
---|
166 | * @param string
|
---|
167 | */
|
---|
168 | public function setDatabaseVersion($databaseVersion)
|
---|
169 | {
|
---|
170 | $this->databaseVersion = $databaseVersion;
|
---|
171 | }
|
---|
172 | /**
|
---|
173 | * @return string
|
---|
174 | */
|
---|
175 | public function getDatabaseVersion()
|
---|
176 | {
|
---|
177 | return $this->databaseVersion;
|
---|
178 | }
|
---|
179 | /**
|
---|
180 | * @param string
|
---|
181 | */
|
---|
182 | public function setDeleteTime($deleteTime)
|
---|
183 | {
|
---|
184 | $this->deleteTime = $deleteTime;
|
---|
185 | }
|
---|
186 | /**
|
---|
187 | * @return string
|
---|
188 | */
|
---|
189 | public function getDeleteTime()
|
---|
190 | {
|
---|
191 | return $this->deleteTime;
|
---|
192 | }
|
---|
193 | /**
|
---|
194 | * @param string
|
---|
195 | */
|
---|
196 | public function setDescription($description)
|
---|
197 | {
|
---|
198 | $this->description = $description;
|
---|
199 | }
|
---|
200 | /**
|
---|
201 | * @return string
|
---|
202 | */
|
---|
203 | public function getDescription()
|
---|
204 | {
|
---|
205 | return $this->description;
|
---|
206 | }
|
---|
207 | /**
|
---|
208 | * @param string
|
---|
209 | */
|
---|
210 | public function setDisplayName($displayName)
|
---|
211 | {
|
---|
212 | $this->displayName = $displayName;
|
---|
213 | }
|
---|
214 | /**
|
---|
215 | * @return string
|
---|
216 | */
|
---|
217 | public function getDisplayName()
|
---|
218 | {
|
---|
219 | return $this->displayName;
|
---|
220 | }
|
---|
221 | /**
|
---|
222 | * @param EncryptionConfig
|
---|
223 | */
|
---|
224 | public function setEncryptionConfig(EncryptionConfig $encryptionConfig)
|
---|
225 | {
|
---|
226 | $this->encryptionConfig = $encryptionConfig;
|
---|
227 | }
|
---|
228 | /**
|
---|
229 | * @return EncryptionConfig
|
---|
230 | */
|
---|
231 | public function getEncryptionConfig()
|
---|
232 | {
|
---|
233 | return $this->encryptionConfig;
|
---|
234 | }
|
---|
235 | /**
|
---|
236 | * @param EncryptionInfo
|
---|
237 | */
|
---|
238 | public function setEncryptionInfo(EncryptionInfo $encryptionInfo)
|
---|
239 | {
|
---|
240 | $this->encryptionInfo = $encryptionInfo;
|
---|
241 | }
|
---|
242 | /**
|
---|
243 | * @return EncryptionInfo
|
---|
244 | */
|
---|
245 | public function getEncryptionInfo()
|
---|
246 | {
|
---|
247 | return $this->encryptionInfo;
|
---|
248 | }
|
---|
249 | /**
|
---|
250 | * @param string
|
---|
251 | */
|
---|
252 | public function setEtag($etag)
|
---|
253 | {
|
---|
254 | $this->etag = $etag;
|
---|
255 | }
|
---|
256 | /**
|
---|
257 | * @return string
|
---|
258 | */
|
---|
259 | public function getEtag()
|
---|
260 | {
|
---|
261 | return $this->etag;
|
---|
262 | }
|
---|
263 | /**
|
---|
264 | * @param QuantityBasedExpiry
|
---|
265 | */
|
---|
266 | public function setExpiryQuantity(QuantityBasedExpiry $expiryQuantity)
|
---|
267 | {
|
---|
268 | $this->expiryQuantity = $expiryQuantity;
|
---|
269 | }
|
---|
270 | /**
|
---|
271 | * @return QuantityBasedExpiry
|
---|
272 | */
|
---|
273 | public function getExpiryQuantity()
|
---|
274 | {
|
---|
275 | return $this->expiryQuantity;
|
---|
276 | }
|
---|
277 | /**
|
---|
278 | * @param string
|
---|
279 | */
|
---|
280 | public function setExpiryTime($expiryTime)
|
---|
281 | {
|
---|
282 | $this->expiryTime = $expiryTime;
|
---|
283 | }
|
---|
284 | /**
|
---|
285 | * @return string
|
---|
286 | */
|
---|
287 | public function getExpiryTime()
|
---|
288 | {
|
---|
289 | return $this->expiryTime;
|
---|
290 | }
|
---|
291 | /**
|
---|
292 | * @param string[]
|
---|
293 | */
|
---|
294 | public function setLabels($labels)
|
---|
295 | {
|
---|
296 | $this->labels = $labels;
|
---|
297 | }
|
---|
298 | /**
|
---|
299 | * @return string[]
|
---|
300 | */
|
---|
301 | public function getLabels()
|
---|
302 | {
|
---|
303 | return $this->labels;
|
---|
304 | }
|
---|
305 | /**
|
---|
306 | * @param string
|
---|
307 | */
|
---|
308 | public function setName($name)
|
---|
309 | {
|
---|
310 | $this->name = $name;
|
---|
311 | }
|
---|
312 | /**
|
---|
313 | * @return string
|
---|
314 | */
|
---|
315 | public function getName()
|
---|
316 | {
|
---|
317 | return $this->name;
|
---|
318 | }
|
---|
319 | /**
|
---|
320 | * @param bool
|
---|
321 | */
|
---|
322 | public function setReconciling($reconciling)
|
---|
323 | {
|
---|
324 | $this->reconciling = $reconciling;
|
---|
325 | }
|
---|
326 | /**
|
---|
327 | * @return bool
|
---|
328 | */
|
---|
329 | public function getReconciling()
|
---|
330 | {
|
---|
331 | return $this->reconciling;
|
---|
332 | }
|
---|
333 | /**
|
---|
334 | * @param bool
|
---|
335 | */
|
---|
336 | public function setSatisfiesPzs($satisfiesPzs)
|
---|
337 | {
|
---|
338 | $this->satisfiesPzs = $satisfiesPzs;
|
---|
339 | }
|
---|
340 | /**
|
---|
341 | * @return bool
|
---|
342 | */
|
---|
343 | public function getSatisfiesPzs()
|
---|
344 | {
|
---|
345 | return $this->satisfiesPzs;
|
---|
346 | }
|
---|
347 | /**
|
---|
348 | * @param string
|
---|
349 | */
|
---|
350 | public function setSizeBytes($sizeBytes)
|
---|
351 | {
|
---|
352 | $this->sizeBytes = $sizeBytes;
|
---|
353 | }
|
---|
354 | /**
|
---|
355 | * @return string
|
---|
356 | */
|
---|
357 | public function getSizeBytes()
|
---|
358 | {
|
---|
359 | return $this->sizeBytes;
|
---|
360 | }
|
---|
361 | /**
|
---|
362 | * @param string
|
---|
363 | */
|
---|
364 | public function setState($state)
|
---|
365 | {
|
---|
366 | $this->state = $state;
|
---|
367 | }
|
---|
368 | /**
|
---|
369 | * @return string
|
---|
370 | */
|
---|
371 | public function getState()
|
---|
372 | {
|
---|
373 | return $this->state;
|
---|
374 | }
|
---|
375 | /**
|
---|
376 | * @param string[]
|
---|
377 | */
|
---|
378 | public function setTags($tags)
|
---|
379 | {
|
---|
380 | $this->tags = $tags;
|
---|
381 | }
|
---|
382 | /**
|
---|
383 | * @return string[]
|
---|
384 | */
|
---|
385 | public function getTags()
|
---|
386 | {
|
---|
387 | return $this->tags;
|
---|
388 | }
|
---|
389 | /**
|
---|
390 | * @param string
|
---|
391 | */
|
---|
392 | public function setType($type)
|
---|
393 | {
|
---|
394 | $this->type = $type;
|
---|
395 | }
|
---|
396 | /**
|
---|
397 | * @return string
|
---|
398 | */
|
---|
399 | public function getType()
|
---|
400 | {
|
---|
401 | return $this->type;
|
---|
402 | }
|
---|
403 | /**
|
---|
404 | * @param string
|
---|
405 | */
|
---|
406 | public function setUid($uid)
|
---|
407 | {
|
---|
408 | $this->uid = $uid;
|
---|
409 | }
|
---|
410 | /**
|
---|
411 | * @return string
|
---|
412 | */
|
---|
413 | public function getUid()
|
---|
414 | {
|
---|
415 | return $this->uid;
|
---|
416 | }
|
---|
417 | /**
|
---|
418 | * @param string
|
---|
419 | */
|
---|
420 | public function setUpdateTime($updateTime)
|
---|
421 | {
|
---|
422 | $this->updateTime = $updateTime;
|
---|
423 | }
|
---|
424 | /**
|
---|
425 | * @return string
|
---|
426 | */
|
---|
427 | public function getUpdateTime()
|
---|
428 | {
|
---|
429 | return $this->updateTime;
|
---|
430 | }
|
---|
431 | }
|
---|
432 |
|
---|
433 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
434 | class_alias(Backup::class, 'Google_Service_CloudAlloyDBAdmin_Backup');
|
---|