source: vendor/google/apiclient-services/src/CloudDataplex/GoogleCloudDataplexV1Entity.php@ e3d4e0a

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

Upload 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\CloudDataplex;
19
20class GoogleCloudDataplexV1Entity extends \Google\Model
21{
22 protected $accessType = GoogleCloudDataplexV1StorageAccess::class;
23 protected $accessDataType = '';
24 /**
25 * @var string
26 */
27 public $asset;
28 /**
29 * @var string
30 */
31 public $catalogEntry;
32 protected $compatibilityType = GoogleCloudDataplexV1EntityCompatibilityStatus::class;
33 protected $compatibilityDataType = '';
34 /**
35 * @var string
36 */
37 public $createTime;
38 /**
39 * @var string
40 */
41 public $dataPath;
42 /**
43 * @var string
44 */
45 public $dataPathPattern;
46 /**
47 * @var string
48 */
49 public $description;
50 /**
51 * @var string
52 */
53 public $displayName;
54 /**
55 * @var string
56 */
57 public $etag;
58 protected $formatType = GoogleCloudDataplexV1StorageFormat::class;
59 protected $formatDataType = '';
60 /**
61 * @var string
62 */
63 public $id;
64 /**
65 * @var string
66 */
67 public $name;
68 protected $schemaType = GoogleCloudDataplexV1Schema::class;
69 protected $schemaDataType = '';
70 /**
71 * @var string
72 */
73 public $system;
74 /**
75 * @var string
76 */
77 public $type;
78 /**
79 * @var string
80 */
81 public $uid;
82 /**
83 * @var string
84 */
85 public $updateTime;
86
87 /**
88 * @param GoogleCloudDataplexV1StorageAccess
89 */
90 public function setAccess(GoogleCloudDataplexV1StorageAccess $access)
91 {
92 $this->access = $access;
93 }
94 /**
95 * @return GoogleCloudDataplexV1StorageAccess
96 */
97 public function getAccess()
98 {
99 return $this->access;
100 }
101 /**
102 * @param string
103 */
104 public function setAsset($asset)
105 {
106 $this->asset = $asset;
107 }
108 /**
109 * @return string
110 */
111 public function getAsset()
112 {
113 return $this->asset;
114 }
115 /**
116 * @param string
117 */
118 public function setCatalogEntry($catalogEntry)
119 {
120 $this->catalogEntry = $catalogEntry;
121 }
122 /**
123 * @return string
124 */
125 public function getCatalogEntry()
126 {
127 return $this->catalogEntry;
128 }
129 /**
130 * @param GoogleCloudDataplexV1EntityCompatibilityStatus
131 */
132 public function setCompatibility(GoogleCloudDataplexV1EntityCompatibilityStatus $compatibility)
133 {
134 $this->compatibility = $compatibility;
135 }
136 /**
137 * @return GoogleCloudDataplexV1EntityCompatibilityStatus
138 */
139 public function getCompatibility()
140 {
141 return $this->compatibility;
142 }
143 /**
144 * @param string
145 */
146 public function setCreateTime($createTime)
147 {
148 $this->createTime = $createTime;
149 }
150 /**
151 * @return string
152 */
153 public function getCreateTime()
154 {
155 return $this->createTime;
156 }
157 /**
158 * @param string
159 */
160 public function setDataPath($dataPath)
161 {
162 $this->dataPath = $dataPath;
163 }
164 /**
165 * @return string
166 */
167 public function getDataPath()
168 {
169 return $this->dataPath;
170 }
171 /**
172 * @param string
173 */
174 public function setDataPathPattern($dataPathPattern)
175 {
176 $this->dataPathPattern = $dataPathPattern;
177 }
178 /**
179 * @return string
180 */
181 public function getDataPathPattern()
182 {
183 return $this->dataPathPattern;
184 }
185 /**
186 * @param string
187 */
188 public function setDescription($description)
189 {
190 $this->description = $description;
191 }
192 /**
193 * @return string
194 */
195 public function getDescription()
196 {
197 return $this->description;
198 }
199 /**
200 * @param string
201 */
202 public function setDisplayName($displayName)
203 {
204 $this->displayName = $displayName;
205 }
206 /**
207 * @return string
208 */
209 public function getDisplayName()
210 {
211 return $this->displayName;
212 }
213 /**
214 * @param string
215 */
216 public function setEtag($etag)
217 {
218 $this->etag = $etag;
219 }
220 /**
221 * @return string
222 */
223 public function getEtag()
224 {
225 return $this->etag;
226 }
227 /**
228 * @param GoogleCloudDataplexV1StorageFormat
229 */
230 public function setFormat(GoogleCloudDataplexV1StorageFormat $format)
231 {
232 $this->format = $format;
233 }
234 /**
235 * @return GoogleCloudDataplexV1StorageFormat
236 */
237 public function getFormat()
238 {
239 return $this->format;
240 }
241 /**
242 * @param string
243 */
244 public function setId($id)
245 {
246 $this->id = $id;
247 }
248 /**
249 * @return string
250 */
251 public function getId()
252 {
253 return $this->id;
254 }
255 /**
256 * @param string
257 */
258 public function setName($name)
259 {
260 $this->name = $name;
261 }
262 /**
263 * @return string
264 */
265 public function getName()
266 {
267 return $this->name;
268 }
269 /**
270 * @param GoogleCloudDataplexV1Schema
271 */
272 public function setSchema(GoogleCloudDataplexV1Schema $schema)
273 {
274 $this->schema = $schema;
275 }
276 /**
277 * @return GoogleCloudDataplexV1Schema
278 */
279 public function getSchema()
280 {
281 return $this->schema;
282 }
283 /**
284 * @param string
285 */
286 public function setSystem($system)
287 {
288 $this->system = $system;
289 }
290 /**
291 * @return string
292 */
293 public function getSystem()
294 {
295 return $this->system;
296 }
297 /**
298 * @param string
299 */
300 public function setType($type)
301 {
302 $this->type = $type;
303 }
304 /**
305 * @return string
306 */
307 public function getType()
308 {
309 return $this->type;
310 }
311 /**
312 * @param string
313 */
314 public function setUid($uid)
315 {
316 $this->uid = $uid;
317 }
318 /**
319 * @return string
320 */
321 public function getUid()
322 {
323 return $this->uid;
324 }
325 /**
326 * @param string
327 */
328 public function setUpdateTime($updateTime)
329 {
330 $this->updateTime = $updateTime;
331 }
332 /**
333 * @return string
334 */
335 public function getUpdateTime()
336 {
337 return $this->updateTime;
338 }
339}
340
341// Adding a class alias for backwards compatibility with the previous class name.
342class_alias(GoogleCloudDataplexV1Entity::class, 'Google_Service_CloudDataplex_GoogleCloudDataplexV1Entity');
Note: See TracBrowser for help on using the repository browser.