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 GoogleCloudApigeeV1ApiProxyRevision extends \Google\Collection
21{
22  protected $collection_key = 'teams';
23  /**
24   * @var string
25   */
26  public $archive;
27  /**
28   * @var string[]
29   */
30  public $basepaths;
31  protected $configurationVersionType = GoogleCloudApigeeV1ConfigVersion::class;
32  protected $configurationVersionDataType = '';
33  /**
34   * @var string
35   */
36  public $contextInfo;
37  /**
38   * @var string
39   */
40  public $createdAt;
41  /**
42   * @var string
43   */
44  public $description;
45  /**
46   * @var string
47   */
48  public $displayName;
49  /**
50   * @var string[]
51   */
52  public $entityMetaDataAsProperties;
53  /**
54   * @var string[]
55   */
56  public $integrationEndpoints;
57  /**
58   * @var string
59   */
60  public $lastModifiedAt;
61  /**
62   * @var string
63   */
64  public $name;
65  /**
66   * @var string[]
67   */
68  public $policies;
69  /**
70   * @var string[]
71   */
72  public $proxies;
73  /**
74   * @var string[]
75   */
76  public $proxyEndpoints;
77  protected $resourceFilesType = GoogleCloudApigeeV1ResourceFiles::class;
78  protected $resourceFilesDataType = '';
79  /**
80   * @var string[]
81   */
82  public $resources;
83  /**
84   * @var string
85   */
86  public $revision;
87  /**
88   * @var string[]
89   */
90  public $sharedFlows;
91  /**
92   * @var string
93   */
94  public $spec;
95  /**
96   * @var string[]
97   */
98  public $targetEndpoints;
99  /**
100   * @var string[]
101   */
102  public $targetServers;
103  /**
104   * @var string[]
105   */
106  public $targets;
107  /**
108   * @var string[]
109   */
110  public $teams;
111  /**
112   * @var string
113   */
114  public $type;
115
116  /**
117   * @param string
118   */
119  public function setArchive($archive)
120  {
121    $this->archive = $archive;
122  }
123  /**
124   * @return string
125   */
126  public function getArchive()
127  {
128    return $this->archive;
129  }
130  /**
131   * @param string[]
132   */
133  public function setBasepaths($basepaths)
134  {
135    $this->basepaths = $basepaths;
136  }
137  /**
138   * @return string[]
139   */
140  public function getBasepaths()
141  {
142    return $this->basepaths;
143  }
144  /**
145   * @param GoogleCloudApigeeV1ConfigVersion
146   */
147  public function setConfigurationVersion(GoogleCloudApigeeV1ConfigVersion $configurationVersion)
148  {
149    $this->configurationVersion = $configurationVersion;
150  }
151  /**
152   * @return GoogleCloudApigeeV1ConfigVersion
153   */
154  public function getConfigurationVersion()
155  {
156    return $this->configurationVersion;
157  }
158  /**
159   * @param string
160   */
161  public function setContextInfo($contextInfo)
162  {
163    $this->contextInfo = $contextInfo;
164  }
165  /**
166   * @return string
167   */
168  public function getContextInfo()
169  {
170    return $this->contextInfo;
171  }
172  /**
173   * @param string
174   */
175  public function setCreatedAt($createdAt)
176  {
177    $this->createdAt = $createdAt;
178  }
179  /**
180   * @return string
181   */
182  public function getCreatedAt()
183  {
184    return $this->createdAt;
185  }
186  /**
187   * @param string
188   */
189  public function setDescription($description)
190  {
191    $this->description = $description;
192  }
193  /**
194   * @return string
195   */
196  public function getDescription()
197  {
198    return $this->description;
199  }
200  /**
201   * @param string
202   */
203  public function setDisplayName($displayName)
204  {
205    $this->displayName = $displayName;
206  }
207  /**
208   * @return string
209   */
210  public function getDisplayName()
211  {
212    return $this->displayName;
213  }
214  /**
215   * @param string[]
216   */
217  public function setEntityMetaDataAsProperties($entityMetaDataAsProperties)
218  {
219    $this->entityMetaDataAsProperties = $entityMetaDataAsProperties;
220  }
221  /**
222   * @return string[]
223   */
224  public function getEntityMetaDataAsProperties()
225  {
226    return $this->entityMetaDataAsProperties;
227  }
228  /**
229   * @param string[]
230   */
231  public function setIntegrationEndpoints($integrationEndpoints)
232  {
233    $this->integrationEndpoints = $integrationEndpoints;
234  }
235  /**
236   * @return string[]
237   */
238  public function getIntegrationEndpoints()
239  {
240    return $this->integrationEndpoints;
241  }
242  /**
243   * @param string
244   */
245  public function setLastModifiedAt($lastModifiedAt)
246  {
247    $this->lastModifiedAt = $lastModifiedAt;
248  }
249  /**
250   * @return string
251   */
252  public function getLastModifiedAt()
253  {
254    return $this->lastModifiedAt;
255  }
256  /**
257   * @param string
258   */
259  public function setName($name)
260  {
261    $this->name = $name;
262  }
263  /**
264   * @return string
265   */
266  public function getName()
267  {
268    return $this->name;
269  }
270  /**
271   * @param string[]
272   */
273  public function setPolicies($policies)
274  {
275    $this->policies = $policies;
276  }
277  /**
278   * @return string[]
279   */
280  public function getPolicies()
281  {
282    return $this->policies;
283  }
284  /**
285   * @param string[]
286   */
287  public function setProxies($proxies)
288  {
289    $this->proxies = $proxies;
290  }
291  /**
292   * @return string[]
293   */
294  public function getProxies()
295  {
296    return $this->proxies;
297  }
298  /**
299   * @param string[]
300   */
301  public function setProxyEndpoints($proxyEndpoints)
302  {
303    $this->proxyEndpoints = $proxyEndpoints;
304  }
305  /**
306   * @return string[]
307   */
308  public function getProxyEndpoints()
309  {
310    return $this->proxyEndpoints;
311  }
312  /**
313   * @param GoogleCloudApigeeV1ResourceFiles
314   */
315  public function setResourceFiles(GoogleCloudApigeeV1ResourceFiles $resourceFiles)
316  {
317    $this->resourceFiles = $resourceFiles;
318  }
319  /**
320   * @return GoogleCloudApigeeV1ResourceFiles
321   */
322  public function getResourceFiles()
323  {
324    return $this->resourceFiles;
325  }
326  /**
327   * @param string[]
328   */
329  public function setResources($resources)
330  {
331    $this->resources = $resources;
332  }
333  /**
334   * @return string[]
335   */
336  public function getResources()
337  {
338    return $this->resources;
339  }
340  /**
341   * @param string
342   */
343  public function setRevision($revision)
344  {
345    $this->revision = $revision;
346  }
347  /**
348   * @return string
349   */
350  public function getRevision()
351  {
352    return $this->revision;
353  }
354  /**
355   * @param string[]
356   */
357  public function setSharedFlows($sharedFlows)
358  {
359    $this->sharedFlows = $sharedFlows;
360  }
361  /**
362   * @return string[]
363   */
364  public function getSharedFlows()
365  {
366    return $this->sharedFlows;
367  }
368  /**
369   * @param string
370   */
371  public function setSpec($spec)
372  {
373    $this->spec = $spec;
374  }
375  /**
376   * @return string
377   */
378  public function getSpec()
379  {
380    return $this->spec;
381  }
382  /**
383   * @param string[]
384   */
385  public function setTargetEndpoints($targetEndpoints)
386  {
387    $this->targetEndpoints = $targetEndpoints;
388  }
389  /**
390   * @return string[]
391   */
392  public function getTargetEndpoints()
393  {
394    return $this->targetEndpoints;
395  }
396  /**
397   * @param string[]
398   */
399  public function setTargetServers($targetServers)
400  {
401    $this->targetServers = $targetServers;
402  }
403  /**
404   * @return string[]
405   */
406  public function getTargetServers()
407  {
408    return $this->targetServers;
409  }
410  /**
411   * @param string[]
412   */
413  public function setTargets($targets)
414  {
415    $this->targets = $targets;
416  }
417  /**
418   * @return string[]
419   */
420  public function getTargets()
421  {
422    return $this->targets;
423  }
424  /**
425   * @param string[]
426   */
427  public function setTeams($teams)
428  {
429    $this->teams = $teams;
430  }
431  /**
432   * @return string[]
433   */
434  public function getTeams()
435  {
436    return $this->teams;
437  }
438  /**
439   * @param string
440   */
441  public function setType($type)
442  {
443    $this->type = $type;
444  }
445  /**
446   * @return string
447   */
448  public function getType()
449  {
450    return $this->type;
451  }
452}
453
454// Adding a class alias for backwards compatibility with the previous class name.
455class_alias(GoogleCloudApigeeV1ApiProxyRevision::class, 'Google_Service_Apigee_GoogleCloudApigeeV1ApiProxyRevision');
456