source: vendor/google/apiclient-services/src/CloudIdentity/GoogleAppsCloudidentityDevicesV1BrowserInfo.php

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

Upload project files

  • Property mode set to 100644
File size: 6.2 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\CloudIdentity;
19
20class GoogleAppsCloudidentityDevicesV1BrowserInfo extends \Google\Model
21{
22 /**
23 * @var string
24 */
25 public $browserManagementState;
26 /**
27 * @var string
28 */
29 public $browserVersion;
30 /**
31 * @var bool
32 */
33 public $isBuiltInDnsClientEnabled;
34 /**
35 * @var bool
36 */
37 public $isBulkDataEntryAnalysisEnabled;
38 /**
39 * @var bool
40 */
41 public $isChromeCleanupEnabled;
42 /**
43 * @var bool
44 */
45 public $isChromeRemoteDesktopAppBlocked;
46 /**
47 * @var bool
48 */
49 public $isFileDownloadAnalysisEnabled;
50 /**
51 * @var bool
52 */
53 public $isFileUploadAnalysisEnabled;
54 /**
55 * @var bool
56 */
57 public $isRealtimeUrlCheckEnabled;
58 /**
59 * @var bool
60 */
61 public $isSecurityEventAnalysisEnabled;
62 /**
63 * @var bool
64 */
65 public $isSiteIsolationEnabled;
66 /**
67 * @var bool
68 */
69 public $isThirdPartyBlockingEnabled;
70 /**
71 * @var string
72 */
73 public $passwordProtectionWarningTrigger;
74 /**
75 * @var string
76 */
77 public $safeBrowsingProtectionLevel;
78
79 /**
80 * @param string
81 */
82 public function setBrowserManagementState($browserManagementState)
83 {
84 $this->browserManagementState = $browserManagementState;
85 }
86 /**
87 * @return string
88 */
89 public function getBrowserManagementState()
90 {
91 return $this->browserManagementState;
92 }
93 /**
94 * @param string
95 */
96 public function setBrowserVersion($browserVersion)
97 {
98 $this->browserVersion = $browserVersion;
99 }
100 /**
101 * @return string
102 */
103 public function getBrowserVersion()
104 {
105 return $this->browserVersion;
106 }
107 /**
108 * @param bool
109 */
110 public function setIsBuiltInDnsClientEnabled($isBuiltInDnsClientEnabled)
111 {
112 $this->isBuiltInDnsClientEnabled = $isBuiltInDnsClientEnabled;
113 }
114 /**
115 * @return bool
116 */
117 public function getIsBuiltInDnsClientEnabled()
118 {
119 return $this->isBuiltInDnsClientEnabled;
120 }
121 /**
122 * @param bool
123 */
124 public function setIsBulkDataEntryAnalysisEnabled($isBulkDataEntryAnalysisEnabled)
125 {
126 $this->isBulkDataEntryAnalysisEnabled = $isBulkDataEntryAnalysisEnabled;
127 }
128 /**
129 * @return bool
130 */
131 public function getIsBulkDataEntryAnalysisEnabled()
132 {
133 return $this->isBulkDataEntryAnalysisEnabled;
134 }
135 /**
136 * @param bool
137 */
138 public function setIsChromeCleanupEnabled($isChromeCleanupEnabled)
139 {
140 $this->isChromeCleanupEnabled = $isChromeCleanupEnabled;
141 }
142 /**
143 * @return bool
144 */
145 public function getIsChromeCleanupEnabled()
146 {
147 return $this->isChromeCleanupEnabled;
148 }
149 /**
150 * @param bool
151 */
152 public function setIsChromeRemoteDesktopAppBlocked($isChromeRemoteDesktopAppBlocked)
153 {
154 $this->isChromeRemoteDesktopAppBlocked = $isChromeRemoteDesktopAppBlocked;
155 }
156 /**
157 * @return bool
158 */
159 public function getIsChromeRemoteDesktopAppBlocked()
160 {
161 return $this->isChromeRemoteDesktopAppBlocked;
162 }
163 /**
164 * @param bool
165 */
166 public function setIsFileDownloadAnalysisEnabled($isFileDownloadAnalysisEnabled)
167 {
168 $this->isFileDownloadAnalysisEnabled = $isFileDownloadAnalysisEnabled;
169 }
170 /**
171 * @return bool
172 */
173 public function getIsFileDownloadAnalysisEnabled()
174 {
175 return $this->isFileDownloadAnalysisEnabled;
176 }
177 /**
178 * @param bool
179 */
180 public function setIsFileUploadAnalysisEnabled($isFileUploadAnalysisEnabled)
181 {
182 $this->isFileUploadAnalysisEnabled = $isFileUploadAnalysisEnabled;
183 }
184 /**
185 * @return bool
186 */
187 public function getIsFileUploadAnalysisEnabled()
188 {
189 return $this->isFileUploadAnalysisEnabled;
190 }
191 /**
192 * @param bool
193 */
194 public function setIsRealtimeUrlCheckEnabled($isRealtimeUrlCheckEnabled)
195 {
196 $this->isRealtimeUrlCheckEnabled = $isRealtimeUrlCheckEnabled;
197 }
198 /**
199 * @return bool
200 */
201 public function getIsRealtimeUrlCheckEnabled()
202 {
203 return $this->isRealtimeUrlCheckEnabled;
204 }
205 /**
206 * @param bool
207 */
208 public function setIsSecurityEventAnalysisEnabled($isSecurityEventAnalysisEnabled)
209 {
210 $this->isSecurityEventAnalysisEnabled = $isSecurityEventAnalysisEnabled;
211 }
212 /**
213 * @return bool
214 */
215 public function getIsSecurityEventAnalysisEnabled()
216 {
217 return $this->isSecurityEventAnalysisEnabled;
218 }
219 /**
220 * @param bool
221 */
222 public function setIsSiteIsolationEnabled($isSiteIsolationEnabled)
223 {
224 $this->isSiteIsolationEnabled = $isSiteIsolationEnabled;
225 }
226 /**
227 * @return bool
228 */
229 public function getIsSiteIsolationEnabled()
230 {
231 return $this->isSiteIsolationEnabled;
232 }
233 /**
234 * @param bool
235 */
236 public function setIsThirdPartyBlockingEnabled($isThirdPartyBlockingEnabled)
237 {
238 $this->isThirdPartyBlockingEnabled = $isThirdPartyBlockingEnabled;
239 }
240 /**
241 * @return bool
242 */
243 public function getIsThirdPartyBlockingEnabled()
244 {
245 return $this->isThirdPartyBlockingEnabled;
246 }
247 /**
248 * @param string
249 */
250 public function setPasswordProtectionWarningTrigger($passwordProtectionWarningTrigger)
251 {
252 $this->passwordProtectionWarningTrigger = $passwordProtectionWarningTrigger;
253 }
254 /**
255 * @return string
256 */
257 public function getPasswordProtectionWarningTrigger()
258 {
259 return $this->passwordProtectionWarningTrigger;
260 }
261 /**
262 * @param string
263 */
264 public function setSafeBrowsingProtectionLevel($safeBrowsingProtectionLevel)
265 {
266 $this->safeBrowsingProtectionLevel = $safeBrowsingProtectionLevel;
267 }
268 /**
269 * @return string
270 */
271 public function getSafeBrowsingProtectionLevel()
272 {
273 return $this->safeBrowsingProtectionLevel;
274 }
275}
276
277// Adding a class alias for backwards compatibility with the previous class name.
278class_alias(GoogleAppsCloudidentityDevicesV1BrowserInfo::class, 'Google_Service_CloudIdentity_GoogleAppsCloudidentityDevicesV1BrowserInfo');
Note: See TracBrowser for help on using the repository browser.