source: vendor/google/apiclient-services/src/Apigee/GoogleCloudApigeeV1Instance.php@ f9c482b

Last change on this file since f9c482b was f9c482b, checked in by Vlado 222039 <vlado.popovski@…>, 9 days ago

Upload new project files

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