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 GoogleCloudApigeeV1Instance extends \Google\Collection
21{
22  protected $collection_key = 'consumerAcceptList';
23  /**
24   * @var string[]
25   */
26  public $consumerAcceptList;
27  /**
28   * @var string
29   */
30  public $createdAt;
31  /**
32   * @var string
33   */
34  public $description;
35  /**
36   * @var string
37   */
38  public $diskEncryptionKeyName;
39  /**
40   * @var string
41   */
42  public $displayName;
43  /**
44   * @var string
45   */
46  public $host;
47  /**
48   * @var string
49   */
50  public $ipRange;
51  /**
52   * @var string
53   */
54  public $lastModifiedAt;
55  /**
56   * @var string
57   */
58  public $location;
59  /**
60   * @var string
61   */
62  public $name;
63  /**
64   * @var string
65   */
66  public $peeringCidrRange;
67  /**
68   * @var string
69   */
70  public $port;
71  /**
72   * @var string
73   */
74  public $runtimeVersion;
75  /**
76   * @var string
77   */
78  public $serviceAttachment;
79  /**
80   * @var string
81   */
82  public $state;
83
84  /**
85   * @param string[]
86   */
87  public function setConsumerAcceptList($consumerAcceptList)
88  {
89    $this->consumerAcceptList = $consumerAcceptList;
90  }
91  /**
92   * @return string[]
93   */
94  public function getConsumerAcceptList()
95  {
96    return $this->consumerAcceptList;
97  }
98  /**
99   * @param string
100   */
101  public function setCreatedAt($createdAt)
102  {
103    $this->createdAt = $createdAt;
104  }
105  /**
106   * @return string
107   */
108  public function getCreatedAt()
109  {
110    return $this->createdAt;
111  }
112  /**
113   * @param string
114   */
115  public function setDescription($description)
116  {
117    $this->description = $description;
118  }
119  /**
120   * @return string
121   */
122  public function getDescription()
123  {
124    return $this->description;
125  }
126  /**
127   * @param string
128   */
129  public function setDiskEncryptionKeyName($diskEncryptionKeyName)
130  {
131    $this->diskEncryptionKeyName = $diskEncryptionKeyName;
132  }
133  /**
134   * @return string
135   */
136  public function getDiskEncryptionKeyName()
137  {
138    return $this->diskEncryptionKeyName;
139  }
140  /**
141   * @param string
142   */
143  public function setDisplayName($displayName)
144  {
145    $this->displayName = $displayName;
146  }
147  /**
148   * @return string
149   */
150  public function getDisplayName()
151  {
152    return $this->displayName;
153  }
154  /**
155   * @param string
156   */
157  public function setHost($host)
158  {
159    $this->host = $host;
160  }
161  /**
162   * @return string
163   */
164  public function getHost()
165  {
166    return $this->host;
167  }
168  /**
169   * @param string
170   */
171  public function setIpRange($ipRange)
172  {
173    $this->ipRange = $ipRange;
174  }
175  /**
176   * @return string
177   */
178  public function getIpRange()
179  {
180    return $this->ipRange;
181  }
182  /**
183   * @param string
184   */
185  public function setLastModifiedAt($lastModifiedAt)
186  {
187    $this->lastModifiedAt = $lastModifiedAt;
188  }
189  /**
190   * @return string
191   */
192  public function getLastModifiedAt()
193  {
194    return $this->lastModifiedAt;
195  }
196  /**
197   * @param string
198   */
199  public function setLocation($location)
200  {
201    $this->location = $location;
202  }
203  /**
204   * @return string
205   */
206  public function getLocation()
207  {
208    return $this->location;
209  }
210  /**
211   * @param string
212   */
213  public function setName($name)
214  {
215    $this->name = $name;
216  }
217  /**
218   * @return string
219   */
220  public function getName()
221  {
222    return $this->name;
223  }
224  /**
225   * @param string
226   */
227  public function setPeeringCidrRange($peeringCidrRange)
228  {
229    $this->peeringCidrRange = $peeringCidrRange;
230  }
231  /**
232   * @return string
233   */
234  public function getPeeringCidrRange()
235  {
236    return $this->peeringCidrRange;
237  }
238  /**
239   * @param string
240   */
241  public function setPort($port)
242  {
243    $this->port = $port;
244  }
245  /**
246   * @return string
247   */
248  public function getPort()
249  {
250    return $this->port;
251  }
252  /**
253   * @param string
254   */
255  public function setRuntimeVersion($runtimeVersion)
256  {
257    $this->runtimeVersion = $runtimeVersion;
258  }
259  /**
260   * @return string
261   */
262  public function getRuntimeVersion()
263  {
264    return $this->runtimeVersion;
265  }
266  /**
267   * @param string
268   */
269  public function setServiceAttachment($serviceAttachment)
270  {
271    $this->serviceAttachment = $serviceAttachment;
272  }
273  /**
274   * @return string
275   */
276  public function getServiceAttachment()
277  {
278    return $this->serviceAttachment;
279  }
280  /**
281   * @param string
282   */
283  public function setState($state)
284  {
285    $this->state = $state;
286  }
287  /**
288   * @return string
289   */
290  public function getState()
291  {
292    return $this->state;
293  }
294}
295
296// Adding a class alias for backwards compatibility with the previous class name.
297class_alias(GoogleCloudApigeeV1Instance::class, 'Google_Service_Apigee_GoogleCloudApigeeV1Instance');
298