source: vendor/google/apiclient-services/src/DataCatalog/GoogleCloudDatacatalogV1Entry.php@ e3d4e0a

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

Upload project files

  • Property mode set to 100644
File size: 13.3 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\DataCatalog;
19
20class GoogleCloudDatacatalogV1Entry extends \Google\Model
21{
22 protected $bigqueryDateShardedSpecType = GoogleCloudDatacatalogV1BigQueryDateShardedSpec::class;
23 protected $bigqueryDateShardedSpecDataType = '';
24 protected $bigqueryTableSpecType = GoogleCloudDatacatalogV1BigQueryTableSpec::class;
25 protected $bigqueryTableSpecDataType = '';
26 protected $businessContextType = GoogleCloudDatacatalogV1BusinessContext::class;
27 protected $businessContextDataType = '';
28 protected $cloudBigtableSystemSpecType = GoogleCloudDatacatalogV1CloudBigtableSystemSpec::class;
29 protected $cloudBigtableSystemSpecDataType = '';
30 protected $dataSourceType = GoogleCloudDatacatalogV1DataSource::class;
31 protected $dataSourceDataType = '';
32 protected $dataSourceConnectionSpecType = GoogleCloudDatacatalogV1DataSourceConnectionSpec::class;
33 protected $dataSourceConnectionSpecDataType = '';
34 protected $databaseTableSpecType = GoogleCloudDatacatalogV1DatabaseTableSpec::class;
35 protected $databaseTableSpecDataType = '';
36 protected $datasetSpecType = GoogleCloudDatacatalogV1DatasetSpec::class;
37 protected $datasetSpecDataType = '';
38 /**
39 * @var string
40 */
41 public $description;
42 /**
43 * @var string
44 */
45 public $displayName;
46 protected $featureOnlineStoreSpecType = GoogleCloudDatacatalogV1FeatureOnlineStoreSpec::class;
47 protected $featureOnlineStoreSpecDataType = '';
48 protected $filesetSpecType = GoogleCloudDatacatalogV1FilesetSpec::class;
49 protected $filesetSpecDataType = '';
50 /**
51 * @var string
52 */
53 public $fullyQualifiedName;
54 protected $gcsFilesetSpecType = GoogleCloudDatacatalogV1GcsFilesetSpec::class;
55 protected $gcsFilesetSpecDataType = '';
56 /**
57 * @var string
58 */
59 public $integratedSystem;
60 /**
61 * @var string[]
62 */
63 public $labels;
64 /**
65 * @var string
66 */
67 public $linkedResource;
68 protected $lookerSystemSpecType = GoogleCloudDatacatalogV1LookerSystemSpec::class;
69 protected $lookerSystemSpecDataType = '';
70 protected $modelSpecType = GoogleCloudDatacatalogV1ModelSpec::class;
71 protected $modelSpecDataType = '';
72 /**
73 * @var string
74 */
75 public $name;
76 protected $personalDetailsType = GoogleCloudDatacatalogV1PersonalDetails::class;
77 protected $personalDetailsDataType = '';
78 protected $routineSpecType = GoogleCloudDatacatalogV1RoutineSpec::class;
79 protected $routineSpecDataType = '';
80 protected $schemaType = GoogleCloudDatacatalogV1Schema::class;
81 protected $schemaDataType = '';
82 protected $serviceSpecType = GoogleCloudDatacatalogV1ServiceSpec::class;
83 protected $serviceSpecDataType = '';
84 protected $sourceSystemTimestampsType = GoogleCloudDatacatalogV1SystemTimestamps::class;
85 protected $sourceSystemTimestampsDataType = '';
86 protected $sqlDatabaseSystemSpecType = GoogleCloudDatacatalogV1SqlDatabaseSystemSpec::class;
87 protected $sqlDatabaseSystemSpecDataType = '';
88 /**
89 * @var string
90 */
91 public $type;
92 protected $usageSignalType = GoogleCloudDatacatalogV1UsageSignal::class;
93 protected $usageSignalDataType = '';
94 /**
95 * @var string
96 */
97 public $userSpecifiedSystem;
98 /**
99 * @var string
100 */
101 public $userSpecifiedType;
102
103 /**
104 * @param GoogleCloudDatacatalogV1BigQueryDateShardedSpec
105 */
106 public function setBigqueryDateShardedSpec(GoogleCloudDatacatalogV1BigQueryDateShardedSpec $bigqueryDateShardedSpec)
107 {
108 $this->bigqueryDateShardedSpec = $bigqueryDateShardedSpec;
109 }
110 /**
111 * @return GoogleCloudDatacatalogV1BigQueryDateShardedSpec
112 */
113 public function getBigqueryDateShardedSpec()
114 {
115 return $this->bigqueryDateShardedSpec;
116 }
117 /**
118 * @param GoogleCloudDatacatalogV1BigQueryTableSpec
119 */
120 public function setBigqueryTableSpec(GoogleCloudDatacatalogV1BigQueryTableSpec $bigqueryTableSpec)
121 {
122 $this->bigqueryTableSpec = $bigqueryTableSpec;
123 }
124 /**
125 * @return GoogleCloudDatacatalogV1BigQueryTableSpec
126 */
127 public function getBigqueryTableSpec()
128 {
129 return $this->bigqueryTableSpec;
130 }
131 /**
132 * @param GoogleCloudDatacatalogV1BusinessContext
133 */
134 public function setBusinessContext(GoogleCloudDatacatalogV1BusinessContext $businessContext)
135 {
136 $this->businessContext = $businessContext;
137 }
138 /**
139 * @return GoogleCloudDatacatalogV1BusinessContext
140 */
141 public function getBusinessContext()
142 {
143 return $this->businessContext;
144 }
145 /**
146 * @param GoogleCloudDatacatalogV1CloudBigtableSystemSpec
147 */
148 public function setCloudBigtableSystemSpec(GoogleCloudDatacatalogV1CloudBigtableSystemSpec $cloudBigtableSystemSpec)
149 {
150 $this->cloudBigtableSystemSpec = $cloudBigtableSystemSpec;
151 }
152 /**
153 * @return GoogleCloudDatacatalogV1CloudBigtableSystemSpec
154 */
155 public function getCloudBigtableSystemSpec()
156 {
157 return $this->cloudBigtableSystemSpec;
158 }
159 /**
160 * @param GoogleCloudDatacatalogV1DataSource
161 */
162 public function setDataSource(GoogleCloudDatacatalogV1DataSource $dataSource)
163 {
164 $this->dataSource = $dataSource;
165 }
166 /**
167 * @return GoogleCloudDatacatalogV1DataSource
168 */
169 public function getDataSource()
170 {
171 return $this->dataSource;
172 }
173 /**
174 * @param GoogleCloudDatacatalogV1DataSourceConnectionSpec
175 */
176 public function setDataSourceConnectionSpec(GoogleCloudDatacatalogV1DataSourceConnectionSpec $dataSourceConnectionSpec)
177 {
178 $this->dataSourceConnectionSpec = $dataSourceConnectionSpec;
179 }
180 /**
181 * @return GoogleCloudDatacatalogV1DataSourceConnectionSpec
182 */
183 public function getDataSourceConnectionSpec()
184 {
185 return $this->dataSourceConnectionSpec;
186 }
187 /**
188 * @param GoogleCloudDatacatalogV1DatabaseTableSpec
189 */
190 public function setDatabaseTableSpec(GoogleCloudDatacatalogV1DatabaseTableSpec $databaseTableSpec)
191 {
192 $this->databaseTableSpec = $databaseTableSpec;
193 }
194 /**
195 * @return GoogleCloudDatacatalogV1DatabaseTableSpec
196 */
197 public function getDatabaseTableSpec()
198 {
199 return $this->databaseTableSpec;
200 }
201 /**
202 * @param GoogleCloudDatacatalogV1DatasetSpec
203 */
204 public function setDatasetSpec(GoogleCloudDatacatalogV1DatasetSpec $datasetSpec)
205 {
206 $this->datasetSpec = $datasetSpec;
207 }
208 /**
209 * @return GoogleCloudDatacatalogV1DatasetSpec
210 */
211 public function getDatasetSpec()
212 {
213 return $this->datasetSpec;
214 }
215 /**
216 * @param string
217 */
218 public function setDescription($description)
219 {
220 $this->description = $description;
221 }
222 /**
223 * @return string
224 */
225 public function getDescription()
226 {
227 return $this->description;
228 }
229 /**
230 * @param string
231 */
232 public function setDisplayName($displayName)
233 {
234 $this->displayName = $displayName;
235 }
236 /**
237 * @return string
238 */
239 public function getDisplayName()
240 {
241 return $this->displayName;
242 }
243 /**
244 * @param GoogleCloudDatacatalogV1FeatureOnlineStoreSpec
245 */
246 public function setFeatureOnlineStoreSpec(GoogleCloudDatacatalogV1FeatureOnlineStoreSpec $featureOnlineStoreSpec)
247 {
248 $this->featureOnlineStoreSpec = $featureOnlineStoreSpec;
249 }
250 /**
251 * @return GoogleCloudDatacatalogV1FeatureOnlineStoreSpec
252 */
253 public function getFeatureOnlineStoreSpec()
254 {
255 return $this->featureOnlineStoreSpec;
256 }
257 /**
258 * @param GoogleCloudDatacatalogV1FilesetSpec
259 */
260 public function setFilesetSpec(GoogleCloudDatacatalogV1FilesetSpec $filesetSpec)
261 {
262 $this->filesetSpec = $filesetSpec;
263 }
264 /**
265 * @return GoogleCloudDatacatalogV1FilesetSpec
266 */
267 public function getFilesetSpec()
268 {
269 return $this->filesetSpec;
270 }
271 /**
272 * @param string
273 */
274 public function setFullyQualifiedName($fullyQualifiedName)
275 {
276 $this->fullyQualifiedName = $fullyQualifiedName;
277 }
278 /**
279 * @return string
280 */
281 public function getFullyQualifiedName()
282 {
283 return $this->fullyQualifiedName;
284 }
285 /**
286 * @param GoogleCloudDatacatalogV1GcsFilesetSpec
287 */
288 public function setGcsFilesetSpec(GoogleCloudDatacatalogV1GcsFilesetSpec $gcsFilesetSpec)
289 {
290 $this->gcsFilesetSpec = $gcsFilesetSpec;
291 }
292 /**
293 * @return GoogleCloudDatacatalogV1GcsFilesetSpec
294 */
295 public function getGcsFilesetSpec()
296 {
297 return $this->gcsFilesetSpec;
298 }
299 /**
300 * @param string
301 */
302 public function setIntegratedSystem($integratedSystem)
303 {
304 $this->integratedSystem = $integratedSystem;
305 }
306 /**
307 * @return string
308 */
309 public function getIntegratedSystem()
310 {
311 return $this->integratedSystem;
312 }
313 /**
314 * @param string[]
315 */
316 public function setLabels($labels)
317 {
318 $this->labels = $labels;
319 }
320 /**
321 * @return string[]
322 */
323 public function getLabels()
324 {
325 return $this->labels;
326 }
327 /**
328 * @param string
329 */
330 public function setLinkedResource($linkedResource)
331 {
332 $this->linkedResource = $linkedResource;
333 }
334 /**
335 * @return string
336 */
337 public function getLinkedResource()
338 {
339 return $this->linkedResource;
340 }
341 /**
342 * @param GoogleCloudDatacatalogV1LookerSystemSpec
343 */
344 public function setLookerSystemSpec(GoogleCloudDatacatalogV1LookerSystemSpec $lookerSystemSpec)
345 {
346 $this->lookerSystemSpec = $lookerSystemSpec;
347 }
348 /**
349 * @return GoogleCloudDatacatalogV1LookerSystemSpec
350 */
351 public function getLookerSystemSpec()
352 {
353 return $this->lookerSystemSpec;
354 }
355 /**
356 * @param GoogleCloudDatacatalogV1ModelSpec
357 */
358 public function setModelSpec(GoogleCloudDatacatalogV1ModelSpec $modelSpec)
359 {
360 $this->modelSpec = $modelSpec;
361 }
362 /**
363 * @return GoogleCloudDatacatalogV1ModelSpec
364 */
365 public function getModelSpec()
366 {
367 return $this->modelSpec;
368 }
369 /**
370 * @param string
371 */
372 public function setName($name)
373 {
374 $this->name = $name;
375 }
376 /**
377 * @return string
378 */
379 public function getName()
380 {
381 return $this->name;
382 }
383 /**
384 * @param GoogleCloudDatacatalogV1PersonalDetails
385 */
386 public function setPersonalDetails(GoogleCloudDatacatalogV1PersonalDetails $personalDetails)
387 {
388 $this->personalDetails = $personalDetails;
389 }
390 /**
391 * @return GoogleCloudDatacatalogV1PersonalDetails
392 */
393 public function getPersonalDetails()
394 {
395 return $this->personalDetails;
396 }
397 /**
398 * @param GoogleCloudDatacatalogV1RoutineSpec
399 */
400 public function setRoutineSpec(GoogleCloudDatacatalogV1RoutineSpec $routineSpec)
401 {
402 $this->routineSpec = $routineSpec;
403 }
404 /**
405 * @return GoogleCloudDatacatalogV1RoutineSpec
406 */
407 public function getRoutineSpec()
408 {
409 return $this->routineSpec;
410 }
411 /**
412 * @param GoogleCloudDatacatalogV1Schema
413 */
414 public function setSchema(GoogleCloudDatacatalogV1Schema $schema)
415 {
416 $this->schema = $schema;
417 }
418 /**
419 * @return GoogleCloudDatacatalogV1Schema
420 */
421 public function getSchema()
422 {
423 return $this->schema;
424 }
425 /**
426 * @param GoogleCloudDatacatalogV1ServiceSpec
427 */
428 public function setServiceSpec(GoogleCloudDatacatalogV1ServiceSpec $serviceSpec)
429 {
430 $this->serviceSpec = $serviceSpec;
431 }
432 /**
433 * @return GoogleCloudDatacatalogV1ServiceSpec
434 */
435 public function getServiceSpec()
436 {
437 return $this->serviceSpec;
438 }
439 /**
440 * @param GoogleCloudDatacatalogV1SystemTimestamps
441 */
442 public function setSourceSystemTimestamps(GoogleCloudDatacatalogV1SystemTimestamps $sourceSystemTimestamps)
443 {
444 $this->sourceSystemTimestamps = $sourceSystemTimestamps;
445 }
446 /**
447 * @return GoogleCloudDatacatalogV1SystemTimestamps
448 */
449 public function getSourceSystemTimestamps()
450 {
451 return $this->sourceSystemTimestamps;
452 }
453 /**
454 * @param GoogleCloudDatacatalogV1SqlDatabaseSystemSpec
455 */
456 public function setSqlDatabaseSystemSpec(GoogleCloudDatacatalogV1SqlDatabaseSystemSpec $sqlDatabaseSystemSpec)
457 {
458 $this->sqlDatabaseSystemSpec = $sqlDatabaseSystemSpec;
459 }
460 /**
461 * @return GoogleCloudDatacatalogV1SqlDatabaseSystemSpec
462 */
463 public function getSqlDatabaseSystemSpec()
464 {
465 return $this->sqlDatabaseSystemSpec;
466 }
467 /**
468 * @param string
469 */
470 public function setType($type)
471 {
472 $this->type = $type;
473 }
474 /**
475 * @return string
476 */
477 public function getType()
478 {
479 return $this->type;
480 }
481 /**
482 * @param GoogleCloudDatacatalogV1UsageSignal
483 */
484 public function setUsageSignal(GoogleCloudDatacatalogV1UsageSignal $usageSignal)
485 {
486 $this->usageSignal = $usageSignal;
487 }
488 /**
489 * @return GoogleCloudDatacatalogV1UsageSignal
490 */
491 public function getUsageSignal()
492 {
493 return $this->usageSignal;
494 }
495 /**
496 * @param string
497 */
498 public function setUserSpecifiedSystem($userSpecifiedSystem)
499 {
500 $this->userSpecifiedSystem = $userSpecifiedSystem;
501 }
502 /**
503 * @return string
504 */
505 public function getUserSpecifiedSystem()
506 {
507 return $this->userSpecifiedSystem;
508 }
509 /**
510 * @param string
511 */
512 public function setUserSpecifiedType($userSpecifiedType)
513 {
514 $this->userSpecifiedType = $userSpecifiedType;
515 }
516 /**
517 * @return string
518 */
519 public function getUserSpecifiedType()
520 {
521 return $this->userSpecifiedType;
522 }
523}
524
525// Adding a class alias for backwards compatibility with the previous class name.
526class_alias(GoogleCloudDatacatalogV1Entry::class, 'Google_Service_DataCatalog_GoogleCloudDatacatalogV1Entry');
Note: See TracBrowser for help on using the repository browser.