source: vendor/google/apiclient-services/src/NetAppFiles/ActiveDirectory.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: 6.9 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\NetAppFiles;
19
20class ActiveDirectory extends \Google\Collection
21{
22 protected $collection_key = 'securityOperators';
23 /**
24 * @var string[]
25 */
26 public $administrators;
27 /**
28 * @var bool
29 */
30 public $aesEncryption;
31 /**
32 * @var string[]
33 */
34 public $backupOperators;
35 /**
36 * @var string
37 */
38 public $createTime;
39 /**
40 * @var string
41 */
42 public $description;
43 /**
44 * @var string
45 */
46 public $dns;
47 /**
48 * @var string
49 */
50 public $domain;
51 /**
52 * @var bool
53 */
54 public $encryptDcConnections;
55 /**
56 * @var string
57 */
58 public $kdcHostname;
59 /**
60 * @var string
61 */
62 public $kdcIp;
63 /**
64 * @var string[]
65 */
66 public $labels;
67 /**
68 * @var bool
69 */
70 public $ldapSigning;
71 /**
72 * @var string
73 */
74 public $name;
75 /**
76 * @var string
77 */
78 public $netBiosPrefix;
79 /**
80 * @var bool
81 */
82 public $nfsUsersWithLdap;
83 /**
84 * @var string
85 */
86 public $organizationalUnit;
87 /**
88 * @var string
89 */
90 public $password;
91 /**
92 * @var string[]
93 */
94 public $securityOperators;
95 /**
96 * @var string
97 */
98 public $site;
99 /**
100 * @var string
101 */
102 public $state;
103 /**
104 * @var string
105 */
106 public $stateDetails;
107 /**
108 * @var string
109 */
110 public $username;
111
112 /**
113 * @param string[]
114 */
115 public function setAdministrators($administrators)
116 {
117 $this->administrators = $administrators;
118 }
119 /**
120 * @return string[]
121 */
122 public function getAdministrators()
123 {
124 return $this->administrators;
125 }
126 /**
127 * @param bool
128 */
129 public function setAesEncryption($aesEncryption)
130 {
131 $this->aesEncryption = $aesEncryption;
132 }
133 /**
134 * @return bool
135 */
136 public function getAesEncryption()
137 {
138 return $this->aesEncryption;
139 }
140 /**
141 * @param string[]
142 */
143 public function setBackupOperators($backupOperators)
144 {
145 $this->backupOperators = $backupOperators;
146 }
147 /**
148 * @return string[]
149 */
150 public function getBackupOperators()
151 {
152 return $this->backupOperators;
153 }
154 /**
155 * @param string
156 */
157 public function setCreateTime($createTime)
158 {
159 $this->createTime = $createTime;
160 }
161 /**
162 * @return string
163 */
164 public function getCreateTime()
165 {
166 return $this->createTime;
167 }
168 /**
169 * @param string
170 */
171 public function setDescription($description)
172 {
173 $this->description = $description;
174 }
175 /**
176 * @return string
177 */
178 public function getDescription()
179 {
180 return $this->description;
181 }
182 /**
183 * @param string
184 */
185 public function setDns($dns)
186 {
187 $this->dns = $dns;
188 }
189 /**
190 * @return string
191 */
192 public function getDns()
193 {
194 return $this->dns;
195 }
196 /**
197 * @param string
198 */
199 public function setDomain($domain)
200 {
201 $this->domain = $domain;
202 }
203 /**
204 * @return string
205 */
206 public function getDomain()
207 {
208 return $this->domain;
209 }
210 /**
211 * @param bool
212 */
213 public function setEncryptDcConnections($encryptDcConnections)
214 {
215 $this->encryptDcConnections = $encryptDcConnections;
216 }
217 /**
218 * @return bool
219 */
220 public function getEncryptDcConnections()
221 {
222 return $this->encryptDcConnections;
223 }
224 /**
225 * @param string
226 */
227 public function setKdcHostname($kdcHostname)
228 {
229 $this->kdcHostname = $kdcHostname;
230 }
231 /**
232 * @return string
233 */
234 public function getKdcHostname()
235 {
236 return $this->kdcHostname;
237 }
238 /**
239 * @param string
240 */
241 public function setKdcIp($kdcIp)
242 {
243 $this->kdcIp = $kdcIp;
244 }
245 /**
246 * @return string
247 */
248 public function getKdcIp()
249 {
250 return $this->kdcIp;
251 }
252 /**
253 * @param string[]
254 */
255 public function setLabels($labels)
256 {
257 $this->labels = $labels;
258 }
259 /**
260 * @return string[]
261 */
262 public function getLabels()
263 {
264 return $this->labels;
265 }
266 /**
267 * @param bool
268 */
269 public function setLdapSigning($ldapSigning)
270 {
271 $this->ldapSigning = $ldapSigning;
272 }
273 /**
274 * @return bool
275 */
276 public function getLdapSigning()
277 {
278 return $this->ldapSigning;
279 }
280 /**
281 * @param string
282 */
283 public function setName($name)
284 {
285 $this->name = $name;
286 }
287 /**
288 * @return string
289 */
290 public function getName()
291 {
292 return $this->name;
293 }
294 /**
295 * @param string
296 */
297 public function setNetBiosPrefix($netBiosPrefix)
298 {
299 $this->netBiosPrefix = $netBiosPrefix;
300 }
301 /**
302 * @return string
303 */
304 public function getNetBiosPrefix()
305 {
306 return $this->netBiosPrefix;
307 }
308 /**
309 * @param bool
310 */
311 public function setNfsUsersWithLdap($nfsUsersWithLdap)
312 {
313 $this->nfsUsersWithLdap = $nfsUsersWithLdap;
314 }
315 /**
316 * @return bool
317 */
318 public function getNfsUsersWithLdap()
319 {
320 return $this->nfsUsersWithLdap;
321 }
322 /**
323 * @param string
324 */
325 public function setOrganizationalUnit($organizationalUnit)
326 {
327 $this->organizationalUnit = $organizationalUnit;
328 }
329 /**
330 * @return string
331 */
332 public function getOrganizationalUnit()
333 {
334 return $this->organizationalUnit;
335 }
336 /**
337 * @param string
338 */
339 public function setPassword($password)
340 {
341 $this->password = $password;
342 }
343 /**
344 * @return string
345 */
346 public function getPassword()
347 {
348 return $this->password;
349 }
350 /**
351 * @param string[]
352 */
353 public function setSecurityOperators($securityOperators)
354 {
355 $this->securityOperators = $securityOperators;
356 }
357 /**
358 * @return string[]
359 */
360 public function getSecurityOperators()
361 {
362 return $this->securityOperators;
363 }
364 /**
365 * @param string
366 */
367 public function setSite($site)
368 {
369 $this->site = $site;
370 }
371 /**
372 * @return string
373 */
374 public function getSite()
375 {
376 return $this->site;
377 }
378 /**
379 * @param string
380 */
381 public function setState($state)
382 {
383 $this->state = $state;
384 }
385 /**
386 * @return string
387 */
388 public function getState()
389 {
390 return $this->state;
391 }
392 /**
393 * @param string
394 */
395 public function setStateDetails($stateDetails)
396 {
397 $this->stateDetails = $stateDetails;
398 }
399 /**
400 * @return string
401 */
402 public function getStateDetails()
403 {
404 return $this->stateDetails;
405 }
406 /**
407 * @param string
408 */
409 public function setUsername($username)
410 {
411 $this->username = $username;
412 }
413 /**
414 * @return string
415 */
416 public function getUsername()
417 {
418 return $this->username;
419 }
420}
421
422// Adding a class alias for backwards compatibility with the previous class name.
423class_alias(ActiveDirectory::class, 'Google_Service_NetAppFiles_ActiveDirectory');
Note: See TracBrowser for help on using the repository browser.