source: vendor/google/apiclient-services/src/Integrations/GoogleCloudIntegrationsV1alphaAuthConfig.php@ f9c482b

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

Upload new project files

  • Property mode set to 100644
File size: 6.0 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\Integrations;
19
20class GoogleCloudIntegrationsV1alphaAuthConfig extends \Google\Collection
21{
22 protected $collection_key = 'expiryNotificationDuration';
23 /**
24 * @var string
25 */
26 public $certificateId;
27 /**
28 * @var string
29 */
30 public $createTime;
31 /**
32 * @var string
33 */
34 public $creatorEmail;
35 /**
36 * @var string
37 */
38 public $credentialType;
39 protected $decryptedCredentialType = GoogleCloudIntegrationsV1alphaCredential::class;
40 protected $decryptedCredentialDataType = '';
41 /**
42 * @var string
43 */
44 public $description;
45 /**
46 * @var string
47 */
48 public $displayName;
49 /**
50 * @var string
51 */
52 public $encryptedCredential;
53 /**
54 * @var string[]
55 */
56 public $expiryNotificationDuration;
57 /**
58 * @var string
59 */
60 public $lastModifierEmail;
61 /**
62 * @var string
63 */
64 public $name;
65 /**
66 * @var string
67 */
68 public $overrideValidTime;
69 /**
70 * @var string
71 */
72 public $reason;
73 /**
74 * @var string
75 */
76 public $state;
77 /**
78 * @var string
79 */
80 public $updateTime;
81 /**
82 * @var string
83 */
84 public $validTime;
85 /**
86 * @var string
87 */
88 public $visibility;
89
90 /**
91 * @param string
92 */
93 public function setCertificateId($certificateId)
94 {
95 $this->certificateId = $certificateId;
96 }
97 /**
98 * @return string
99 */
100 public function getCertificateId()
101 {
102 return $this->certificateId;
103 }
104 /**
105 * @param string
106 */
107 public function setCreateTime($createTime)
108 {
109 $this->createTime = $createTime;
110 }
111 /**
112 * @return string
113 */
114 public function getCreateTime()
115 {
116 return $this->createTime;
117 }
118 /**
119 * @param string
120 */
121 public function setCreatorEmail($creatorEmail)
122 {
123 $this->creatorEmail = $creatorEmail;
124 }
125 /**
126 * @return string
127 */
128 public function getCreatorEmail()
129 {
130 return $this->creatorEmail;
131 }
132 /**
133 * @param string
134 */
135 public function setCredentialType($credentialType)
136 {
137 $this->credentialType = $credentialType;
138 }
139 /**
140 * @return string
141 */
142 public function getCredentialType()
143 {
144 return $this->credentialType;
145 }
146 /**
147 * @param GoogleCloudIntegrationsV1alphaCredential
148 */
149 public function setDecryptedCredential(GoogleCloudIntegrationsV1alphaCredential $decryptedCredential)
150 {
151 $this->decryptedCredential = $decryptedCredential;
152 }
153 /**
154 * @return GoogleCloudIntegrationsV1alphaCredential
155 */
156 public function getDecryptedCredential()
157 {
158 return $this->decryptedCredential;
159 }
160 /**
161 * @param string
162 */
163 public function setDescription($description)
164 {
165 $this->description = $description;
166 }
167 /**
168 * @return string
169 */
170 public function getDescription()
171 {
172 return $this->description;
173 }
174 /**
175 * @param string
176 */
177 public function setDisplayName($displayName)
178 {
179 $this->displayName = $displayName;
180 }
181 /**
182 * @return string
183 */
184 public function getDisplayName()
185 {
186 return $this->displayName;
187 }
188 /**
189 * @param string
190 */
191 public function setEncryptedCredential($encryptedCredential)
192 {
193 $this->encryptedCredential = $encryptedCredential;
194 }
195 /**
196 * @return string
197 */
198 public function getEncryptedCredential()
199 {
200 return $this->encryptedCredential;
201 }
202 /**
203 * @param string[]
204 */
205 public function setExpiryNotificationDuration($expiryNotificationDuration)
206 {
207 $this->expiryNotificationDuration = $expiryNotificationDuration;
208 }
209 /**
210 * @return string[]
211 */
212 public function getExpiryNotificationDuration()
213 {
214 return $this->expiryNotificationDuration;
215 }
216 /**
217 * @param string
218 */
219 public function setLastModifierEmail($lastModifierEmail)
220 {
221 $this->lastModifierEmail = $lastModifierEmail;
222 }
223 /**
224 * @return string
225 */
226 public function getLastModifierEmail()
227 {
228 return $this->lastModifierEmail;
229 }
230 /**
231 * @param string
232 */
233 public function setName($name)
234 {
235 $this->name = $name;
236 }
237 /**
238 * @return string
239 */
240 public function getName()
241 {
242 return $this->name;
243 }
244 /**
245 * @param string
246 */
247 public function setOverrideValidTime($overrideValidTime)
248 {
249 $this->overrideValidTime = $overrideValidTime;
250 }
251 /**
252 * @return string
253 */
254 public function getOverrideValidTime()
255 {
256 return $this->overrideValidTime;
257 }
258 /**
259 * @param string
260 */
261 public function setReason($reason)
262 {
263 $this->reason = $reason;
264 }
265 /**
266 * @return string
267 */
268 public function getReason()
269 {
270 return $this->reason;
271 }
272 /**
273 * @param string
274 */
275 public function setState($state)
276 {
277 $this->state = $state;
278 }
279 /**
280 * @return string
281 */
282 public function getState()
283 {
284 return $this->state;
285 }
286 /**
287 * @param string
288 */
289 public function setUpdateTime($updateTime)
290 {
291 $this->updateTime = $updateTime;
292 }
293 /**
294 * @return string
295 */
296 public function getUpdateTime()
297 {
298 return $this->updateTime;
299 }
300 /**
301 * @param string
302 */
303 public function setValidTime($validTime)
304 {
305 $this->validTime = $validTime;
306 }
307 /**
308 * @return string
309 */
310 public function getValidTime()
311 {
312 return $this->validTime;
313 }
314 /**
315 * @param string
316 */
317 public function setVisibility($visibility)
318 {
319 $this->visibility = $visibility;
320 }
321 /**
322 * @return string
323 */
324 public function getVisibility()
325 {
326 return $this->visibility;
327 }
328}
329
330// Adding a class alias for backwards compatibility with the previous class name.
331class_alias(GoogleCloudIntegrationsV1alphaAuthConfig::class, 'Google_Service_Integrations_GoogleCloudIntegrationsV1alphaAuthConfig');
Note: See TracBrowser for help on using the repository browser.