source: vendor/google/apiclient-services/src/CloudMemorystoreforMemcached/Instance.php

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

Upload project files

  • Property mode set to 100644
File size: 7.4 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\CloudMemorystoreforMemcached;
19
20class Instance extends \Google\Collection
21{
22 protected $collection_key = 'zones';
23 /**
24 * @var string
25 */
26 public $authorizedNetwork;
27 /**
28 * @var string
29 */
30 public $createTime;
31 /**
32 * @var string
33 */
34 public $discoveryEndpoint;
35 /**
36 * @var string
37 */
38 public $displayName;
39 protected $instanceMessagesType = InstanceMessage::class;
40 protected $instanceMessagesDataType = 'array';
41 /**
42 * @var string[]
43 */
44 public $labels;
45 protected $maintenancePolicyType = GoogleCloudMemcacheV1MaintenancePolicy::class;
46 protected $maintenancePolicyDataType = '';
47 protected $maintenanceScheduleType = MaintenanceSchedule::class;
48 protected $maintenanceScheduleDataType = '';
49 /**
50 * @var string
51 */
52 public $memcacheFullVersion;
53 protected $memcacheNodesType = Node::class;
54 protected $memcacheNodesDataType = 'array';
55 /**
56 * @var string
57 */
58 public $memcacheVersion;
59 /**
60 * @var string
61 */
62 public $name;
63 protected $nodeConfigType = NodeConfig::class;
64 protected $nodeConfigDataType = '';
65 /**
66 * @var int
67 */
68 public $nodeCount;
69 protected $parametersType = MemcacheParameters::class;
70 protected $parametersDataType = '';
71 /**
72 * @var string[]
73 */
74 public $reservedIpRangeId;
75 /**
76 * @var bool
77 */
78 public $satisfiesPzi;
79 /**
80 * @var bool
81 */
82 public $satisfiesPzs;
83 /**
84 * @var string
85 */
86 public $state;
87 /**
88 * @var string
89 */
90 public $updateTime;
91 /**
92 * @var string[]
93 */
94 public $zones;
95
96 /**
97 * @param string
98 */
99 public function setAuthorizedNetwork($authorizedNetwork)
100 {
101 $this->authorizedNetwork = $authorizedNetwork;
102 }
103 /**
104 * @return string
105 */
106 public function getAuthorizedNetwork()
107 {
108 return $this->authorizedNetwork;
109 }
110 /**
111 * @param string
112 */
113 public function setCreateTime($createTime)
114 {
115 $this->createTime = $createTime;
116 }
117 /**
118 * @return string
119 */
120 public function getCreateTime()
121 {
122 return $this->createTime;
123 }
124 /**
125 * @param string
126 */
127 public function setDiscoveryEndpoint($discoveryEndpoint)
128 {
129 $this->discoveryEndpoint = $discoveryEndpoint;
130 }
131 /**
132 * @return string
133 */
134 public function getDiscoveryEndpoint()
135 {
136 return $this->discoveryEndpoint;
137 }
138 /**
139 * @param string
140 */
141 public function setDisplayName($displayName)
142 {
143 $this->displayName = $displayName;
144 }
145 /**
146 * @return string
147 */
148 public function getDisplayName()
149 {
150 return $this->displayName;
151 }
152 /**
153 * @param InstanceMessage[]
154 */
155 public function setInstanceMessages($instanceMessages)
156 {
157 $this->instanceMessages = $instanceMessages;
158 }
159 /**
160 * @return InstanceMessage[]
161 */
162 public function getInstanceMessages()
163 {
164 return $this->instanceMessages;
165 }
166 /**
167 * @param string[]
168 */
169 public function setLabels($labels)
170 {
171 $this->labels = $labels;
172 }
173 /**
174 * @return string[]
175 */
176 public function getLabels()
177 {
178 return $this->labels;
179 }
180 /**
181 * @param GoogleCloudMemcacheV1MaintenancePolicy
182 */
183 public function setMaintenancePolicy(GoogleCloudMemcacheV1MaintenancePolicy $maintenancePolicy)
184 {
185 $this->maintenancePolicy = $maintenancePolicy;
186 }
187 /**
188 * @return GoogleCloudMemcacheV1MaintenancePolicy
189 */
190 public function getMaintenancePolicy()
191 {
192 return $this->maintenancePolicy;
193 }
194 /**
195 * @param MaintenanceSchedule
196 */
197 public function setMaintenanceSchedule(MaintenanceSchedule $maintenanceSchedule)
198 {
199 $this->maintenanceSchedule = $maintenanceSchedule;
200 }
201 /**
202 * @return MaintenanceSchedule
203 */
204 public function getMaintenanceSchedule()
205 {
206 return $this->maintenanceSchedule;
207 }
208 /**
209 * @param string
210 */
211 public function setMemcacheFullVersion($memcacheFullVersion)
212 {
213 $this->memcacheFullVersion = $memcacheFullVersion;
214 }
215 /**
216 * @return string
217 */
218 public function getMemcacheFullVersion()
219 {
220 return $this->memcacheFullVersion;
221 }
222 /**
223 * @param Node[]
224 */
225 public function setMemcacheNodes($memcacheNodes)
226 {
227 $this->memcacheNodes = $memcacheNodes;
228 }
229 /**
230 * @return Node[]
231 */
232 public function getMemcacheNodes()
233 {
234 return $this->memcacheNodes;
235 }
236 /**
237 * @param string
238 */
239 public function setMemcacheVersion($memcacheVersion)
240 {
241 $this->memcacheVersion = $memcacheVersion;
242 }
243 /**
244 * @return string
245 */
246 public function getMemcacheVersion()
247 {
248 return $this->memcacheVersion;
249 }
250 /**
251 * @param string
252 */
253 public function setName($name)
254 {
255 $this->name = $name;
256 }
257 /**
258 * @return string
259 */
260 public function getName()
261 {
262 return $this->name;
263 }
264 /**
265 * @param NodeConfig
266 */
267 public function setNodeConfig(NodeConfig $nodeConfig)
268 {
269 $this->nodeConfig = $nodeConfig;
270 }
271 /**
272 * @return NodeConfig
273 */
274 public function getNodeConfig()
275 {
276 return $this->nodeConfig;
277 }
278 /**
279 * @param int
280 */
281 public function setNodeCount($nodeCount)
282 {
283 $this->nodeCount = $nodeCount;
284 }
285 /**
286 * @return int
287 */
288 public function getNodeCount()
289 {
290 return $this->nodeCount;
291 }
292 /**
293 * @param MemcacheParameters
294 */
295 public function setParameters(MemcacheParameters $parameters)
296 {
297 $this->parameters = $parameters;
298 }
299 /**
300 * @return MemcacheParameters
301 */
302 public function getParameters()
303 {
304 return $this->parameters;
305 }
306 /**
307 * @param string[]
308 */
309 public function setReservedIpRangeId($reservedIpRangeId)
310 {
311 $this->reservedIpRangeId = $reservedIpRangeId;
312 }
313 /**
314 * @return string[]
315 */
316 public function getReservedIpRangeId()
317 {
318 return $this->reservedIpRangeId;
319 }
320 /**
321 * @param bool
322 */
323 public function setSatisfiesPzi($satisfiesPzi)
324 {
325 $this->satisfiesPzi = $satisfiesPzi;
326 }
327 /**
328 * @return bool
329 */
330 public function getSatisfiesPzi()
331 {
332 return $this->satisfiesPzi;
333 }
334 /**
335 * @param bool
336 */
337 public function setSatisfiesPzs($satisfiesPzs)
338 {
339 $this->satisfiesPzs = $satisfiesPzs;
340 }
341 /**
342 * @return bool
343 */
344 public function getSatisfiesPzs()
345 {
346 return $this->satisfiesPzs;
347 }
348 /**
349 * @param string
350 */
351 public function setState($state)
352 {
353 $this->state = $state;
354 }
355 /**
356 * @return string
357 */
358 public function getState()
359 {
360 return $this->state;
361 }
362 /**
363 * @param string
364 */
365 public function setUpdateTime($updateTime)
366 {
367 $this->updateTime = $updateTime;
368 }
369 /**
370 * @return string
371 */
372 public function getUpdateTime()
373 {
374 return $this->updateTime;
375 }
376 /**
377 * @param string[]
378 */
379 public function setZones($zones)
380 {
381 $this->zones = $zones;
382 }
383 /**
384 * @return string[]
385 */
386 public function getZones()
387 {
388 return $this->zones;
389 }
390}
391
392// Adding a class alias for backwards compatibility with the previous class name.
393class_alias(Instance::class, 'Google_Service_CloudMemorystoreforMemcached_Instance');
Note: See TracBrowser for help on using the repository browser.