source: vendor/google/apiclient-services/src/ChromePolicy/GoogleChromePolicyVersionsV1PolicySchema.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: 5.7 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\ChromePolicy;
19
20class GoogleChromePolicyVersionsV1PolicySchema extends \Google\Collection
21{
22 protected $collection_key = 'validTargetResources';
23 /**
24 * @var string[]
25 */
26 public $accessRestrictions;
27 protected $additionalTargetKeyNamesType = GoogleChromePolicyVersionsV1AdditionalTargetKeyName::class;
28 protected $additionalTargetKeyNamesDataType = 'array';
29 /**
30 * @var string
31 */
32 public $categoryTitle;
33 protected $definitionType = Proto2FileDescriptorProto::class;
34 protected $definitionDataType = '';
35 protected $fieldDescriptionsType = GoogleChromePolicyVersionsV1PolicySchemaFieldDescription::class;
36 protected $fieldDescriptionsDataType = 'array';
37 /**
38 * @var string
39 */
40 public $name;
41 protected $noticesType = GoogleChromePolicyVersionsV1PolicySchemaNoticeDescription::class;
42 protected $noticesDataType = 'array';
43 protected $policyApiLifecycleType = GoogleChromePolicyVersionsV1PolicyApiLifecycle::class;
44 protected $policyApiLifecycleDataType = '';
45 /**
46 * @var string
47 */
48 public $policyDescription;
49 /**
50 * @var string
51 */
52 public $schemaName;
53 /**
54 * @var string
55 */
56 public $supportUri;
57 /**
58 * @var string[]
59 */
60 public $supportedPlatforms;
61 /**
62 * @var string[]
63 */
64 public $validTargetResources;
65
66 /**
67 * @param string[]
68 */
69 public function setAccessRestrictions($accessRestrictions)
70 {
71 $this->accessRestrictions = $accessRestrictions;
72 }
73 /**
74 * @return string[]
75 */
76 public function getAccessRestrictions()
77 {
78 return $this->accessRestrictions;
79 }
80 /**
81 * @param GoogleChromePolicyVersionsV1AdditionalTargetKeyName[]
82 */
83 public function setAdditionalTargetKeyNames($additionalTargetKeyNames)
84 {
85 $this->additionalTargetKeyNames = $additionalTargetKeyNames;
86 }
87 /**
88 * @return GoogleChromePolicyVersionsV1AdditionalTargetKeyName[]
89 */
90 public function getAdditionalTargetKeyNames()
91 {
92 return $this->additionalTargetKeyNames;
93 }
94 /**
95 * @param string
96 */
97 public function setCategoryTitle($categoryTitle)
98 {
99 $this->categoryTitle = $categoryTitle;
100 }
101 /**
102 * @return string
103 */
104 public function getCategoryTitle()
105 {
106 return $this->categoryTitle;
107 }
108 /**
109 * @param Proto2FileDescriptorProto
110 */
111 public function setDefinition(Proto2FileDescriptorProto $definition)
112 {
113 $this->definition = $definition;
114 }
115 /**
116 * @return Proto2FileDescriptorProto
117 */
118 public function getDefinition()
119 {
120 return $this->definition;
121 }
122 /**
123 * @param GoogleChromePolicyVersionsV1PolicySchemaFieldDescription[]
124 */
125 public function setFieldDescriptions($fieldDescriptions)
126 {
127 $this->fieldDescriptions = $fieldDescriptions;
128 }
129 /**
130 * @return GoogleChromePolicyVersionsV1PolicySchemaFieldDescription[]
131 */
132 public function getFieldDescriptions()
133 {
134 return $this->fieldDescriptions;
135 }
136 /**
137 * @param string
138 */
139 public function setName($name)
140 {
141 $this->name = $name;
142 }
143 /**
144 * @return string
145 */
146 public function getName()
147 {
148 return $this->name;
149 }
150 /**
151 * @param GoogleChromePolicyVersionsV1PolicySchemaNoticeDescription[]
152 */
153 public function setNotices($notices)
154 {
155 $this->notices = $notices;
156 }
157 /**
158 * @return GoogleChromePolicyVersionsV1PolicySchemaNoticeDescription[]
159 */
160 public function getNotices()
161 {
162 return $this->notices;
163 }
164 /**
165 * @param GoogleChromePolicyVersionsV1PolicyApiLifecycle
166 */
167 public function setPolicyApiLifecycle(GoogleChromePolicyVersionsV1PolicyApiLifecycle $policyApiLifecycle)
168 {
169 $this->policyApiLifecycle = $policyApiLifecycle;
170 }
171 /**
172 * @return GoogleChromePolicyVersionsV1PolicyApiLifecycle
173 */
174 public function getPolicyApiLifecycle()
175 {
176 return $this->policyApiLifecycle;
177 }
178 /**
179 * @param string
180 */
181 public function setPolicyDescription($policyDescription)
182 {
183 $this->policyDescription = $policyDescription;
184 }
185 /**
186 * @return string
187 */
188 public function getPolicyDescription()
189 {
190 return $this->policyDescription;
191 }
192 /**
193 * @param string
194 */
195 public function setSchemaName($schemaName)
196 {
197 $this->schemaName = $schemaName;
198 }
199 /**
200 * @return string
201 */
202 public function getSchemaName()
203 {
204 return $this->schemaName;
205 }
206 /**
207 * @param string
208 */
209 public function setSupportUri($supportUri)
210 {
211 $this->supportUri = $supportUri;
212 }
213 /**
214 * @return string
215 */
216 public function getSupportUri()
217 {
218 return $this->supportUri;
219 }
220 /**
221 * @param string[]
222 */
223 public function setSupportedPlatforms($supportedPlatforms)
224 {
225 $this->supportedPlatforms = $supportedPlatforms;
226 }
227 /**
228 * @return string[]
229 */
230 public function getSupportedPlatforms()
231 {
232 return $this->supportedPlatforms;
233 }
234 /**
235 * @param string[]
236 */
237 public function setValidTargetResources($validTargetResources)
238 {
239 $this->validTargetResources = $validTargetResources;
240 }
241 /**
242 * @return string[]
243 */
244 public function getValidTargetResources()
245 {
246 return $this->validTargetResources;
247 }
248}
249
250// Adding a class alias for backwards compatibility with the previous class name.
251class_alias(GoogleChromePolicyVersionsV1PolicySchema::class, 'Google_Service_ChromePolicy_GoogleChromePolicyVersionsV1PolicySchema');
Note: See TracBrowser for help on using the repository browser.