source: vendor/google/apiclient-services/src/Apigee/GoogleCloudApigeeV1EnvironmentConfig.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.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\Apigee;
19
20class GoogleCloudApigeeV1EnvironmentConfig extends \Google\Collection
21{
22 protected $collection_key = 'targets';
23 protected $addonsConfigType = GoogleCloudApigeeV1RuntimeAddonsConfig::class;
24 protected $addonsConfigDataType = '';
25 /**
26 * @var string
27 */
28 public $arcConfigLocation;
29 protected $clientIpResolutionConfigType = GoogleCloudApigeeV1EnvironmentConfigClientIPResolutionConfig::class;
30 protected $clientIpResolutionConfigDataType = '';
31 /**
32 * @var string
33 */
34 public $createTime;
35 protected $dataCollectorsType = GoogleCloudApigeeV1DataCollectorConfig::class;
36 protected $dataCollectorsDataType = 'array';
37 protected $debugMaskType = GoogleCloudApigeeV1DebugMask::class;
38 protected $debugMaskDataType = '';
39 protected $deploymentGroupsType = GoogleCloudApigeeV1DeploymentGroupConfig::class;
40 protected $deploymentGroupsDataType = 'array';
41 protected $deploymentsType = GoogleCloudApigeeV1DeploymentConfig::class;
42 protected $deploymentsDataType = 'array';
43 /**
44 * @var string
45 */
46 public $envScopedRevisionId;
47 /**
48 * @var string[]
49 */
50 public $featureFlags;
51 protected $flowhooksType = GoogleCloudApigeeV1FlowHookConfig::class;
52 protected $flowhooksDataType = 'array';
53 /**
54 * @var string
55 */
56 public $forwardProxyUri;
57 /**
58 * @var string
59 */
60 public $gatewayConfigLocation;
61 protected $keystoresType = GoogleCloudApigeeV1KeystoreConfig::class;
62 protected $keystoresDataType = 'array';
63 /**
64 * @var string
65 */
66 public $name;
67 /**
68 * @var string
69 */
70 public $provider;
71 /**
72 * @var string
73 */
74 public $pubsubTopic;
75 protected $resourceReferencesType = GoogleCloudApigeeV1ReferenceConfig::class;
76 protected $resourceReferencesDataType = 'array';
77 protected $resourcesType = GoogleCloudApigeeV1ResourceConfig::class;
78 protected $resourcesDataType = 'array';
79 /**
80 * @var string
81 */
82 public $revisionId;
83 /**
84 * @var string
85 */
86 public $sequenceNumber;
87 protected $targetsType = GoogleCloudApigeeV1TargetServerConfig::class;
88 protected $targetsDataType = 'array';
89 protected $traceConfigType = GoogleCloudApigeeV1RuntimeTraceConfig::class;
90 protected $traceConfigDataType = '';
91 /**
92 * @var string
93 */
94 public $uid;
95
96 /**
97 * @param GoogleCloudApigeeV1RuntimeAddonsConfig
98 */
99 public function setAddonsConfig(GoogleCloudApigeeV1RuntimeAddonsConfig $addonsConfig)
100 {
101 $this->addonsConfig = $addonsConfig;
102 }
103 /**
104 * @return GoogleCloudApigeeV1RuntimeAddonsConfig
105 */
106 public function getAddonsConfig()
107 {
108 return $this->addonsConfig;
109 }
110 /**
111 * @param string
112 */
113 public function setArcConfigLocation($arcConfigLocation)
114 {
115 $this->arcConfigLocation = $arcConfigLocation;
116 }
117 /**
118 * @return string
119 */
120 public function getArcConfigLocation()
121 {
122 return $this->arcConfigLocation;
123 }
124 /**
125 * @param GoogleCloudApigeeV1EnvironmentConfigClientIPResolutionConfig
126 */
127 public function setClientIpResolutionConfig(GoogleCloudApigeeV1EnvironmentConfigClientIPResolutionConfig $clientIpResolutionConfig)
128 {
129 $this->clientIpResolutionConfig = $clientIpResolutionConfig;
130 }
131 /**
132 * @return GoogleCloudApigeeV1EnvironmentConfigClientIPResolutionConfig
133 */
134 public function getClientIpResolutionConfig()
135 {
136 return $this->clientIpResolutionConfig;
137 }
138 /**
139 * @param string
140 */
141 public function setCreateTime($createTime)
142 {
143 $this->createTime = $createTime;
144 }
145 /**
146 * @return string
147 */
148 public function getCreateTime()
149 {
150 return $this->createTime;
151 }
152 /**
153 * @param GoogleCloudApigeeV1DataCollectorConfig[]
154 */
155 public function setDataCollectors($dataCollectors)
156 {
157 $this->dataCollectors = $dataCollectors;
158 }
159 /**
160 * @return GoogleCloudApigeeV1DataCollectorConfig[]
161 */
162 public function getDataCollectors()
163 {
164 return $this->dataCollectors;
165 }
166 /**
167 * @param GoogleCloudApigeeV1DebugMask
168 */
169 public function setDebugMask(GoogleCloudApigeeV1DebugMask $debugMask)
170 {
171 $this->debugMask = $debugMask;
172 }
173 /**
174 * @return GoogleCloudApigeeV1DebugMask
175 */
176 public function getDebugMask()
177 {
178 return $this->debugMask;
179 }
180 /**
181 * @param GoogleCloudApigeeV1DeploymentGroupConfig[]
182 */
183 public function setDeploymentGroups($deploymentGroups)
184 {
185 $this->deploymentGroups = $deploymentGroups;
186 }
187 /**
188 * @return GoogleCloudApigeeV1DeploymentGroupConfig[]
189 */
190 public function getDeploymentGroups()
191 {
192 return $this->deploymentGroups;
193 }
194 /**
195 * @param GoogleCloudApigeeV1DeploymentConfig[]
196 */
197 public function setDeployments($deployments)
198 {
199 $this->deployments = $deployments;
200 }
201 /**
202 * @return GoogleCloudApigeeV1DeploymentConfig[]
203 */
204 public function getDeployments()
205 {
206 return $this->deployments;
207 }
208 /**
209 * @param string
210 */
211 public function setEnvScopedRevisionId($envScopedRevisionId)
212 {
213 $this->envScopedRevisionId = $envScopedRevisionId;
214 }
215 /**
216 * @return string
217 */
218 public function getEnvScopedRevisionId()
219 {
220 return $this->envScopedRevisionId;
221 }
222 /**
223 * @param string[]
224 */
225 public function setFeatureFlags($featureFlags)
226 {
227 $this->featureFlags = $featureFlags;
228 }
229 /**
230 * @return string[]
231 */
232 public function getFeatureFlags()
233 {
234 return $this->featureFlags;
235 }
236 /**
237 * @param GoogleCloudApigeeV1FlowHookConfig[]
238 */
239 public function setFlowhooks($flowhooks)
240 {
241 $this->flowhooks = $flowhooks;
242 }
243 /**
244 * @return GoogleCloudApigeeV1FlowHookConfig[]
245 */
246 public function getFlowhooks()
247 {
248 return $this->flowhooks;
249 }
250 /**
251 * @param string
252 */
253 public function setForwardProxyUri($forwardProxyUri)
254 {
255 $this->forwardProxyUri = $forwardProxyUri;
256 }
257 /**
258 * @return string
259 */
260 public function getForwardProxyUri()
261 {
262 return $this->forwardProxyUri;
263 }
264 /**
265 * @param string
266 */
267 public function setGatewayConfigLocation($gatewayConfigLocation)
268 {
269 $this->gatewayConfigLocation = $gatewayConfigLocation;
270 }
271 /**
272 * @return string
273 */
274 public function getGatewayConfigLocation()
275 {
276 return $this->gatewayConfigLocation;
277 }
278 /**
279 * @param GoogleCloudApigeeV1KeystoreConfig[]
280 */
281 public function setKeystores($keystores)
282 {
283 $this->keystores = $keystores;
284 }
285 /**
286 * @return GoogleCloudApigeeV1KeystoreConfig[]
287 */
288 public function getKeystores()
289 {
290 return $this->keystores;
291 }
292 /**
293 * @param string
294 */
295 public function setName($name)
296 {
297 $this->name = $name;
298 }
299 /**
300 * @return string
301 */
302 public function getName()
303 {
304 return $this->name;
305 }
306 /**
307 * @param string
308 */
309 public function setProvider($provider)
310 {
311 $this->provider = $provider;
312 }
313 /**
314 * @return string
315 */
316 public function getProvider()
317 {
318 return $this->provider;
319 }
320 /**
321 * @param string
322 */
323 public function setPubsubTopic($pubsubTopic)
324 {
325 $this->pubsubTopic = $pubsubTopic;
326 }
327 /**
328 * @return string
329 */
330 public function getPubsubTopic()
331 {
332 return $this->pubsubTopic;
333 }
334 /**
335 * @param GoogleCloudApigeeV1ReferenceConfig[]
336 */
337 public function setResourceReferences($resourceReferences)
338 {
339 $this->resourceReferences = $resourceReferences;
340 }
341 /**
342 * @return GoogleCloudApigeeV1ReferenceConfig[]
343 */
344 public function getResourceReferences()
345 {
346 return $this->resourceReferences;
347 }
348 /**
349 * @param GoogleCloudApigeeV1ResourceConfig[]
350 */
351 public function setResources($resources)
352 {
353 $this->resources = $resources;
354 }
355 /**
356 * @return GoogleCloudApigeeV1ResourceConfig[]
357 */
358 public function getResources()
359 {
360 return $this->resources;
361 }
362 /**
363 * @param string
364 */
365 public function setRevisionId($revisionId)
366 {
367 $this->revisionId = $revisionId;
368 }
369 /**
370 * @return string
371 */
372 public function getRevisionId()
373 {
374 return $this->revisionId;
375 }
376 /**
377 * @param string
378 */
379 public function setSequenceNumber($sequenceNumber)
380 {
381 $this->sequenceNumber = $sequenceNumber;
382 }
383 /**
384 * @return string
385 */
386 public function getSequenceNumber()
387 {
388 return $this->sequenceNumber;
389 }
390 /**
391 * @param GoogleCloudApigeeV1TargetServerConfig[]
392 */
393 public function setTargets($targets)
394 {
395 $this->targets = $targets;
396 }
397 /**
398 * @return GoogleCloudApigeeV1TargetServerConfig[]
399 */
400 public function getTargets()
401 {
402 return $this->targets;
403 }
404 /**
405 * @param GoogleCloudApigeeV1RuntimeTraceConfig
406 */
407 public function setTraceConfig(GoogleCloudApigeeV1RuntimeTraceConfig $traceConfig)
408 {
409 $this->traceConfig = $traceConfig;
410 }
411 /**
412 * @return GoogleCloudApigeeV1RuntimeTraceConfig
413 */
414 public function getTraceConfig()
415 {
416 return $this->traceConfig;
417 }
418 /**
419 * @param string
420 */
421 public function setUid($uid)
422 {
423 $this->uid = $uid;
424 }
425 /**
426 * @return string
427 */
428 public function getUid()
429 {
430 return $this->uid;
431 }
432}
433
434// Adding a class alias for backwards compatibility with the previous class name.
435class_alias(GoogleCloudApigeeV1EnvironmentConfig::class, 'Google_Service_Apigee_GoogleCloudApigeeV1EnvironmentConfig');
Note: See TracBrowser for help on using the repository browser.