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 $dataSourceType = GoogleCloudDatacatalogV1DataSource::class;
29  protected $dataSourceDataType = '';
30  protected $dataSourceConnectionSpecType = GoogleCloudDatacatalogV1DataSourceConnectionSpec::class;
31  protected $dataSourceConnectionSpecDataType = '';
32  protected $databaseTableSpecType = GoogleCloudDatacatalogV1DatabaseTableSpec::class;
33  protected $databaseTableSpecDataType = '';
34  /**
35   * @var string
36   */
37  public $description;
38  /**
39   * @var string
40   */
41  public $displayName;
42  protected $filesetSpecType = GoogleCloudDatacatalogV1FilesetSpec::class;
43  protected $filesetSpecDataType = '';
44  /**
45   * @var string
46   */
47  public $fullyQualifiedName;
48  protected $gcsFilesetSpecType = GoogleCloudDatacatalogV1GcsFilesetSpec::class;
49  protected $gcsFilesetSpecDataType = '';
50  /**
51   * @var string
52   */
53  public $integratedSystem;
54  /**
55   * @var string[]
56   */
57  public $labels;
58  /**
59   * @var string
60   */
61  public $linkedResource;
62  /**
63   * @var string
64   */
65  public $name;
66  protected $personalDetailsType = GoogleCloudDatacatalogV1PersonalDetails::class;
67  protected $personalDetailsDataType = '';
68  protected $routineSpecType = GoogleCloudDatacatalogV1RoutineSpec::class;
69  protected $routineSpecDataType = '';
70  protected $schemaType = GoogleCloudDatacatalogV1Schema::class;
71  protected $schemaDataType = '';
72  protected $sourceSystemTimestampsType = GoogleCloudDatacatalogV1SystemTimestamps::class;
73  protected $sourceSystemTimestampsDataType = '';
74  /**
75   * @var string
76   */
77  public $type;
78  protected $usageSignalType = GoogleCloudDatacatalogV1UsageSignal::class;
79  protected $usageSignalDataType = '';
80  /**
81   * @var string
82   */
83  public $userSpecifiedSystem;
84  /**
85   * @var string
86   */
87  public $userSpecifiedType;
88
89  /**
90   * @param GoogleCloudDatacatalogV1BigQueryDateShardedSpec
91   */
92  public function setBigqueryDateShardedSpec(GoogleCloudDatacatalogV1BigQueryDateShardedSpec $bigqueryDateShardedSpec)
93  {
94    $this->bigqueryDateShardedSpec = $bigqueryDateShardedSpec;
95  }
96  /**
97   * @return GoogleCloudDatacatalogV1BigQueryDateShardedSpec
98   */
99  public function getBigqueryDateShardedSpec()
100  {
101    return $this->bigqueryDateShardedSpec;
102  }
103  /**
104   * @param GoogleCloudDatacatalogV1BigQueryTableSpec
105   */
106  public function setBigqueryTableSpec(GoogleCloudDatacatalogV1BigQueryTableSpec $bigqueryTableSpec)
107  {
108    $this->bigqueryTableSpec = $bigqueryTableSpec;
109  }
110  /**
111   * @return GoogleCloudDatacatalogV1BigQueryTableSpec
112   */
113  public function getBigqueryTableSpec()
114  {
115    return $this->bigqueryTableSpec;
116  }
117  /**
118   * @param GoogleCloudDatacatalogV1BusinessContext
119   */
120  public function setBusinessContext(GoogleCloudDatacatalogV1BusinessContext $businessContext)
121  {
122    $this->businessContext = $businessContext;
123  }
124  /**
125   * @return GoogleCloudDatacatalogV1BusinessContext
126   */
127  public function getBusinessContext()
128  {
129    return $this->businessContext;
130  }
131  /**
132   * @param GoogleCloudDatacatalogV1DataSource
133   */
134  public function setDataSource(GoogleCloudDatacatalogV1DataSource $dataSource)
135  {
136    $this->dataSource = $dataSource;
137  }
138  /**
139   * @return GoogleCloudDatacatalogV1DataSource
140   */
141  public function getDataSource()
142  {
143    return $this->dataSource;
144  }
145  /**
146   * @param GoogleCloudDatacatalogV1DataSourceConnectionSpec
147   */
148  public function setDataSourceConnectionSpec(GoogleCloudDatacatalogV1DataSourceConnectionSpec $dataSourceConnectionSpec)
149  {
150    $this->dataSourceConnectionSpec = $dataSourceConnectionSpec;
151  }
152  /**
153   * @return GoogleCloudDatacatalogV1DataSourceConnectionSpec
154   */
155  public function getDataSourceConnectionSpec()
156  {
157    return $this->dataSourceConnectionSpec;
158  }
159  /**
160   * @param GoogleCloudDatacatalogV1DatabaseTableSpec
161   */
162  public function setDatabaseTableSpec(GoogleCloudDatacatalogV1DatabaseTableSpec $databaseTableSpec)
163  {
164    $this->databaseTableSpec = $databaseTableSpec;
165  }
166  /**
167   * @return GoogleCloudDatacatalogV1DatabaseTableSpec
168   */
169  public function getDatabaseTableSpec()
170  {
171    return $this->databaseTableSpec;
172  }
173  /**
174   * @param string
175   */
176  public function setDescription($description)
177  {
178    $this->description = $description;
179  }
180  /**
181   * @return string
182   */
183  public function getDescription()
184  {
185    return $this->description;
186  }
187  /**
188   * @param string
189   */
190  public function setDisplayName($displayName)
191  {
192    $this->displayName = $displayName;
193  }
194  /**
195   * @return string
196   */
197  public function getDisplayName()
198  {
199    return $this->displayName;
200  }
201  /**
202   * @param GoogleCloudDatacatalogV1FilesetSpec
203   */
204  public function setFilesetSpec(GoogleCloudDatacatalogV1FilesetSpec $filesetSpec)
205  {
206    $this->filesetSpec = $filesetSpec;
207  }
208  /**
209   * @return GoogleCloudDatacatalogV1FilesetSpec
210   */
211  public function getFilesetSpec()
212  {
213    return $this->filesetSpec;
214  }
215  /**
216   * @param string
217   */
218  public function setFullyQualifiedName($fullyQualifiedName)
219  {
220    $this->fullyQualifiedName = $fullyQualifiedName;
221  }
222  /**
223   * @return string
224   */
225  public function getFullyQualifiedName()
226  {
227    return $this->fullyQualifiedName;
228  }
229  /**
230   * @param GoogleCloudDatacatalogV1GcsFilesetSpec
231   */
232  public function setGcsFilesetSpec(GoogleCloudDatacatalogV1GcsFilesetSpec $gcsFilesetSpec)
233  {
234    $this->gcsFilesetSpec = $gcsFilesetSpec;
235  }
236  /**
237   * @return GoogleCloudDatacatalogV1GcsFilesetSpec
238   */
239  public function getGcsFilesetSpec()
240  {
241    return $this->gcsFilesetSpec;
242  }
243  /**
244   * @param string
245   */
246  public function setIntegratedSystem($integratedSystem)
247  {
248    $this->integratedSystem = $integratedSystem;
249  }
250  /**
251   * @return string
252   */
253  public function getIntegratedSystem()
254  {
255    return $this->integratedSystem;
256  }
257  /**
258   * @param string[]
259   */
260  public function setLabels($labels)
261  {
262    $this->labels = $labels;
263  }
264  /**
265   * @return string[]
266   */
267  public function getLabels()
268  {
269    return $this->labels;
270  }
271  /**
272   * @param string
273   */
274  public function setLinkedResource($linkedResource)
275  {
276    $this->linkedResource = $linkedResource;
277  }
278  /**
279   * @return string
280   */
281  public function getLinkedResource()
282  {
283    return $this->linkedResource;
284  }
285  /**
286   * @param string
287   */
288  public function setName($name)
289  {
290    $this->name = $name;
291  }
292  /**
293   * @return string
294   */
295  public function getName()
296  {
297    return $this->name;
298  }
299  /**
300   * @param GoogleCloudDatacatalogV1PersonalDetails
301   */
302  public function setPersonalDetails(GoogleCloudDatacatalogV1PersonalDetails $personalDetails)
303  {
304    $this->personalDetails = $personalDetails;
305  }
306  /**
307   * @return GoogleCloudDatacatalogV1PersonalDetails
308   */
309  public function getPersonalDetails()
310  {
311    return $this->personalDetails;
312  }
313  /**
314   * @param GoogleCloudDatacatalogV1RoutineSpec
315   */
316  public function setRoutineSpec(GoogleCloudDatacatalogV1RoutineSpec $routineSpec)
317  {
318    $this->routineSpec = $routineSpec;
319  }
320  /**
321   * @return GoogleCloudDatacatalogV1RoutineSpec
322   */
323  public function getRoutineSpec()
324  {
325    return $this->routineSpec;
326  }
327  /**
328   * @param GoogleCloudDatacatalogV1Schema
329   */
330  public function setSchema(GoogleCloudDatacatalogV1Schema $schema)
331  {
332    $this->schema = $schema;
333  }
334  /**
335   * @return GoogleCloudDatacatalogV1Schema
336   */
337  public function getSchema()
338  {
339    return $this->schema;
340  }
341  /**
342   * @param GoogleCloudDatacatalogV1SystemTimestamps
343   */
344  public function setSourceSystemTimestamps(GoogleCloudDatacatalogV1SystemTimestamps $sourceSystemTimestamps)
345  {
346    $this->sourceSystemTimestamps = $sourceSystemTimestamps;
347  }
348  /**
349   * @return GoogleCloudDatacatalogV1SystemTimestamps
350   */
351  public function getSourceSystemTimestamps()
352  {
353    return $this->sourceSystemTimestamps;
354  }
355  /**
356   * @param string
357   */
358  public function setType($type)
359  {
360    $this->type = $type;
361  }
362  /**
363   * @return string
364   */
365  public function getType()
366  {
367    return $this->type;
368  }
369  /**
370   * @param GoogleCloudDatacatalogV1UsageSignal
371   */
372  public function setUsageSignal(GoogleCloudDatacatalogV1UsageSignal $usageSignal)
373  {
374    $this->usageSignal = $usageSignal;
375  }
376  /**
377   * @return GoogleCloudDatacatalogV1UsageSignal
378   */
379  public function getUsageSignal()
380  {
381    return $this->usageSignal;
382  }
383  /**
384   * @param string
385   */
386  public function setUserSpecifiedSystem($userSpecifiedSystem)
387  {
388    $this->userSpecifiedSystem = $userSpecifiedSystem;
389  }
390  /**
391   * @return string
392   */
393  public function getUserSpecifiedSystem()
394  {
395    return $this->userSpecifiedSystem;
396  }
397  /**
398   * @param string
399   */
400  public function setUserSpecifiedType($userSpecifiedType)
401  {
402    $this->userSpecifiedType = $userSpecifiedType;
403  }
404  /**
405   * @return string
406   */
407  public function getUserSpecifiedType()
408  {
409    return $this->userSpecifiedType;
410  }
411}
412
413// Adding a class alias for backwards compatibility with the previous class name.
414class_alias(GoogleCloudDatacatalogV1Entry::class, 'Google_Service_DataCatalog_GoogleCloudDatacatalogV1Entry');
415