source: vendor/google/apiclient-services/src/OracleDatabase/CloudExadataInfrastructureProperties.php@ e3d4e0a

Last change on this file since e3d4e0a was e3d4e0a, checked in by Vlado 222039 <vlado.popovski@…>, 7 days ago

Upload project files

  • Property mode set to 100644
File size: 9.2 KB
Line 
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\OracleDatabase;
19
20class CloudExadataInfrastructureProperties extends \Google\Collection
21{
22 protected $collection_key = 'customerContacts';
23 /**
24 * @var int
25 */
26 public $activatedStorageCount;
27 /**
28 * @var int
29 */
30 public $additionalStorageCount;
31 /**
32 * @var int
33 */
34 public $availableStorageSizeGb;
35 /**
36 * @var int
37 */
38 public $computeCount;
39 /**
40 * @var int
41 */
42 public $cpuCount;
43 protected $customerContactsType = CustomerContact::class;
44 protected $customerContactsDataType = 'array';
45 public $dataStorageSizeTb;
46 /**
47 * @var int
48 */
49 public $dbNodeStorageSizeGb;
50 /**
51 * @var string
52 */
53 public $dbServerVersion;
54 protected $maintenanceWindowType = MaintenanceWindow::class;
55 protected $maintenanceWindowDataType = '';
56 /**
57 * @var int
58 */
59 public $maxCpuCount;
60 public $maxDataStorageTb;
61 /**
62 * @var int
63 */
64 public $maxDbNodeStorageSizeGb;
65 /**
66 * @var int
67 */
68 public $maxMemoryGb;
69 /**
70 * @var int
71 */
72 public $memorySizeGb;
73 /**
74 * @var string
75 */
76 public $monthlyDbServerVersion;
77 /**
78 * @var string
79 */
80 public $monthlyStorageServerVersion;
81 /**
82 * @var string
83 */
84 public $nextMaintenanceRunId;
85 /**
86 * @var string
87 */
88 public $nextMaintenanceRunTime;
89 /**
90 * @var string
91 */
92 public $nextSecurityMaintenanceRunTime;
93 /**
94 * @var string
95 */
96 public $ociUrl;
97 /**
98 * @var string
99 */
100 public $ocid;
101 /**
102 * @var string
103 */
104 public $shape;
105 /**
106 * @var string
107 */
108 public $state;
109 /**
110 * @var int
111 */
112 public $storageCount;
113 /**
114 * @var string
115 */
116 public $storageServerVersion;
117 /**
118 * @var int
119 */
120 public $totalStorageSizeGb;
121
122 /**
123 * @param int
124 */
125 public function setActivatedStorageCount($activatedStorageCount)
126 {
127 $this->activatedStorageCount = $activatedStorageCount;
128 }
129 /**
130 * @return int
131 */
132 public function getActivatedStorageCount()
133 {
134 return $this->activatedStorageCount;
135 }
136 /**
137 * @param int
138 */
139 public function setAdditionalStorageCount($additionalStorageCount)
140 {
141 $this->additionalStorageCount = $additionalStorageCount;
142 }
143 /**
144 * @return int
145 */
146 public function getAdditionalStorageCount()
147 {
148 return $this->additionalStorageCount;
149 }
150 /**
151 * @param int
152 */
153 public function setAvailableStorageSizeGb($availableStorageSizeGb)
154 {
155 $this->availableStorageSizeGb = $availableStorageSizeGb;
156 }
157 /**
158 * @return int
159 */
160 public function getAvailableStorageSizeGb()
161 {
162 return $this->availableStorageSizeGb;
163 }
164 /**
165 * @param int
166 */
167 public function setComputeCount($computeCount)
168 {
169 $this->computeCount = $computeCount;
170 }
171 /**
172 * @return int
173 */
174 public function getComputeCount()
175 {
176 return $this->computeCount;
177 }
178 /**
179 * @param int
180 */
181 public function setCpuCount($cpuCount)
182 {
183 $this->cpuCount = $cpuCount;
184 }
185 /**
186 * @return int
187 */
188 public function getCpuCount()
189 {
190 return $this->cpuCount;
191 }
192 /**
193 * @param CustomerContact[]
194 */
195 public function setCustomerContacts($customerContacts)
196 {
197 $this->customerContacts = $customerContacts;
198 }
199 /**
200 * @return CustomerContact[]
201 */
202 public function getCustomerContacts()
203 {
204 return $this->customerContacts;
205 }
206 public function setDataStorageSizeTb($dataStorageSizeTb)
207 {
208 $this->dataStorageSizeTb = $dataStorageSizeTb;
209 }
210 public function getDataStorageSizeTb()
211 {
212 return $this->dataStorageSizeTb;
213 }
214 /**
215 * @param int
216 */
217 public function setDbNodeStorageSizeGb($dbNodeStorageSizeGb)
218 {
219 $this->dbNodeStorageSizeGb = $dbNodeStorageSizeGb;
220 }
221 /**
222 * @return int
223 */
224 public function getDbNodeStorageSizeGb()
225 {
226 return $this->dbNodeStorageSizeGb;
227 }
228 /**
229 * @param string
230 */
231 public function setDbServerVersion($dbServerVersion)
232 {
233 $this->dbServerVersion = $dbServerVersion;
234 }
235 /**
236 * @return string
237 */
238 public function getDbServerVersion()
239 {
240 return $this->dbServerVersion;
241 }
242 /**
243 * @param MaintenanceWindow
244 */
245 public function setMaintenanceWindow(MaintenanceWindow $maintenanceWindow)
246 {
247 $this->maintenanceWindow = $maintenanceWindow;
248 }
249 /**
250 * @return MaintenanceWindow
251 */
252 public function getMaintenanceWindow()
253 {
254 return $this->maintenanceWindow;
255 }
256 /**
257 * @param int
258 */
259 public function setMaxCpuCount($maxCpuCount)
260 {
261 $this->maxCpuCount = $maxCpuCount;
262 }
263 /**
264 * @return int
265 */
266 public function getMaxCpuCount()
267 {
268 return $this->maxCpuCount;
269 }
270 public function setMaxDataStorageTb($maxDataStorageTb)
271 {
272 $this->maxDataStorageTb = $maxDataStorageTb;
273 }
274 public function getMaxDataStorageTb()
275 {
276 return $this->maxDataStorageTb;
277 }
278 /**
279 * @param int
280 */
281 public function setMaxDbNodeStorageSizeGb($maxDbNodeStorageSizeGb)
282 {
283 $this->maxDbNodeStorageSizeGb = $maxDbNodeStorageSizeGb;
284 }
285 /**
286 * @return int
287 */
288 public function getMaxDbNodeStorageSizeGb()
289 {
290 return $this->maxDbNodeStorageSizeGb;
291 }
292 /**
293 * @param int
294 */
295 public function setMaxMemoryGb($maxMemoryGb)
296 {
297 $this->maxMemoryGb = $maxMemoryGb;
298 }
299 /**
300 * @return int
301 */
302 public function getMaxMemoryGb()
303 {
304 return $this->maxMemoryGb;
305 }
306 /**
307 * @param int
308 */
309 public function setMemorySizeGb($memorySizeGb)
310 {
311 $this->memorySizeGb = $memorySizeGb;
312 }
313 /**
314 * @return int
315 */
316 public function getMemorySizeGb()
317 {
318 return $this->memorySizeGb;
319 }
320 /**
321 * @param string
322 */
323 public function setMonthlyDbServerVersion($monthlyDbServerVersion)
324 {
325 $this->monthlyDbServerVersion = $monthlyDbServerVersion;
326 }
327 /**
328 * @return string
329 */
330 public function getMonthlyDbServerVersion()
331 {
332 return $this->monthlyDbServerVersion;
333 }
334 /**
335 * @param string
336 */
337 public function setMonthlyStorageServerVersion($monthlyStorageServerVersion)
338 {
339 $this->monthlyStorageServerVersion = $monthlyStorageServerVersion;
340 }
341 /**
342 * @return string
343 */
344 public function getMonthlyStorageServerVersion()
345 {
346 return $this->monthlyStorageServerVersion;
347 }
348 /**
349 * @param string
350 */
351 public function setNextMaintenanceRunId($nextMaintenanceRunId)
352 {
353 $this->nextMaintenanceRunId = $nextMaintenanceRunId;
354 }
355 /**
356 * @return string
357 */
358 public function getNextMaintenanceRunId()
359 {
360 return $this->nextMaintenanceRunId;
361 }
362 /**
363 * @param string
364 */
365 public function setNextMaintenanceRunTime($nextMaintenanceRunTime)
366 {
367 $this->nextMaintenanceRunTime = $nextMaintenanceRunTime;
368 }
369 /**
370 * @return string
371 */
372 public function getNextMaintenanceRunTime()
373 {
374 return $this->nextMaintenanceRunTime;
375 }
376 /**
377 * @param string
378 */
379 public function setNextSecurityMaintenanceRunTime($nextSecurityMaintenanceRunTime)
380 {
381 $this->nextSecurityMaintenanceRunTime = $nextSecurityMaintenanceRunTime;
382 }
383 /**
384 * @return string
385 */
386 public function getNextSecurityMaintenanceRunTime()
387 {
388 return $this->nextSecurityMaintenanceRunTime;
389 }
390 /**
391 * @param string
392 */
393 public function setOciUrl($ociUrl)
394 {
395 $this->ociUrl = $ociUrl;
396 }
397 /**
398 * @return string
399 */
400 public function getOciUrl()
401 {
402 return $this->ociUrl;
403 }
404 /**
405 * @param string
406 */
407 public function setOcid($ocid)
408 {
409 $this->ocid = $ocid;
410 }
411 /**
412 * @return string
413 */
414 public function getOcid()
415 {
416 return $this->ocid;
417 }
418 /**
419 * @param string
420 */
421 public function setShape($shape)
422 {
423 $this->shape = $shape;
424 }
425 /**
426 * @return string
427 */
428 public function getShape()
429 {
430 return $this->shape;
431 }
432 /**
433 * @param string
434 */
435 public function setState($state)
436 {
437 $this->state = $state;
438 }
439 /**
440 * @return string
441 */
442 public function getState()
443 {
444 return $this->state;
445 }
446 /**
447 * @param int
448 */
449 public function setStorageCount($storageCount)
450 {
451 $this->storageCount = $storageCount;
452 }
453 /**
454 * @return int
455 */
456 public function getStorageCount()
457 {
458 return $this->storageCount;
459 }
460 /**
461 * @param string
462 */
463 public function setStorageServerVersion($storageServerVersion)
464 {
465 $this->storageServerVersion = $storageServerVersion;
466 }
467 /**
468 * @return string
469 */
470 public function getStorageServerVersion()
471 {
472 return $this->storageServerVersion;
473 }
474 /**
475 * @param int
476 */
477 public function setTotalStorageSizeGb($totalStorageSizeGb)
478 {
479 $this->totalStorageSizeGb = $totalStorageSizeGb;
480 }
481 /**
482 * @return int
483 */
484 public function getTotalStorageSizeGb()
485 {
486 return $this->totalStorageSizeGb;
487 }
488}
489
490// Adding a class alias for backwards compatibility with the previous class name.
491class_alias(CloudExadataInfrastructureProperties::class, 'Google_Service_OracleDatabase_CloudExadataInfrastructureProperties');
Note: See TracBrowser for help on using the repository browser.