source: vendor/google/apiclient-services/src/OracleDatabase/DbSystemShape.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: 4.5 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 DbSystemShape extends \Google\Model
21{
22 /**
23 * @var int
24 */
25 public $availableCoreCountPerNode;
26 /**
27 * @var int
28 */
29 public $availableDataStorageTb;
30 /**
31 * @var int
32 */
33 public $availableMemoryPerNodeGb;
34 /**
35 * @var int
36 */
37 public $maxNodeCount;
38 /**
39 * @var int
40 */
41 public $maxStorageCount;
42 /**
43 * @var int
44 */
45 public $minCoreCountPerNode;
46 /**
47 * @var int
48 */
49 public $minDbNodeStoragePerNodeGb;
50 /**
51 * @var int
52 */
53 public $minMemoryPerNodeGb;
54 /**
55 * @var int
56 */
57 public $minNodeCount;
58 /**
59 * @var int
60 */
61 public $minStorageCount;
62 /**
63 * @var string
64 */
65 public $name;
66 /**
67 * @var string
68 */
69 public $shape;
70
71 /**
72 * @param int
73 */
74 public function setAvailableCoreCountPerNode($availableCoreCountPerNode)
75 {
76 $this->availableCoreCountPerNode = $availableCoreCountPerNode;
77 }
78 /**
79 * @return int
80 */
81 public function getAvailableCoreCountPerNode()
82 {
83 return $this->availableCoreCountPerNode;
84 }
85 /**
86 * @param int
87 */
88 public function setAvailableDataStorageTb($availableDataStorageTb)
89 {
90 $this->availableDataStorageTb = $availableDataStorageTb;
91 }
92 /**
93 * @return int
94 */
95 public function getAvailableDataStorageTb()
96 {
97 return $this->availableDataStorageTb;
98 }
99 /**
100 * @param int
101 */
102 public function setAvailableMemoryPerNodeGb($availableMemoryPerNodeGb)
103 {
104 $this->availableMemoryPerNodeGb = $availableMemoryPerNodeGb;
105 }
106 /**
107 * @return int
108 */
109 public function getAvailableMemoryPerNodeGb()
110 {
111 return $this->availableMemoryPerNodeGb;
112 }
113 /**
114 * @param int
115 */
116 public function setMaxNodeCount($maxNodeCount)
117 {
118 $this->maxNodeCount = $maxNodeCount;
119 }
120 /**
121 * @return int
122 */
123 public function getMaxNodeCount()
124 {
125 return $this->maxNodeCount;
126 }
127 /**
128 * @param int
129 */
130 public function setMaxStorageCount($maxStorageCount)
131 {
132 $this->maxStorageCount = $maxStorageCount;
133 }
134 /**
135 * @return int
136 */
137 public function getMaxStorageCount()
138 {
139 return $this->maxStorageCount;
140 }
141 /**
142 * @param int
143 */
144 public function setMinCoreCountPerNode($minCoreCountPerNode)
145 {
146 $this->minCoreCountPerNode = $minCoreCountPerNode;
147 }
148 /**
149 * @return int
150 */
151 public function getMinCoreCountPerNode()
152 {
153 return $this->minCoreCountPerNode;
154 }
155 /**
156 * @param int
157 */
158 public function setMinDbNodeStoragePerNodeGb($minDbNodeStoragePerNodeGb)
159 {
160 $this->minDbNodeStoragePerNodeGb = $minDbNodeStoragePerNodeGb;
161 }
162 /**
163 * @return int
164 */
165 public function getMinDbNodeStoragePerNodeGb()
166 {
167 return $this->minDbNodeStoragePerNodeGb;
168 }
169 /**
170 * @param int
171 */
172 public function setMinMemoryPerNodeGb($minMemoryPerNodeGb)
173 {
174 $this->minMemoryPerNodeGb = $minMemoryPerNodeGb;
175 }
176 /**
177 * @return int
178 */
179 public function getMinMemoryPerNodeGb()
180 {
181 return $this->minMemoryPerNodeGb;
182 }
183 /**
184 * @param int
185 */
186 public function setMinNodeCount($minNodeCount)
187 {
188 $this->minNodeCount = $minNodeCount;
189 }
190 /**
191 * @return int
192 */
193 public function getMinNodeCount()
194 {
195 return $this->minNodeCount;
196 }
197 /**
198 * @param int
199 */
200 public function setMinStorageCount($minStorageCount)
201 {
202 $this->minStorageCount = $minStorageCount;
203 }
204 /**
205 * @return int
206 */
207 public function getMinStorageCount()
208 {
209 return $this->minStorageCount;
210 }
211 /**
212 * @param string
213 */
214 public function setName($name)
215 {
216 $this->name = $name;
217 }
218 /**
219 * @return string
220 */
221 public function getName()
222 {
223 return $this->name;
224 }
225 /**
226 * @param string
227 */
228 public function setShape($shape)
229 {
230 $this->shape = $shape;
231 }
232 /**
233 * @return string
234 */
235 public function getShape()
236 {
237 return $this->shape;
238 }
239}
240
241// Adding a class alias for backwards compatibility with the previous class name.
242class_alias(DbSystemShape::class, 'Google_Service_OracleDatabase_DbSystemShape');
Note: See TracBrowser for help on using the repository browser.