source: vendor/google/apiclient-services/src/Bigquery/TableListTables.php

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

Upload project files

  • Property mode set to 100644
File size: 4.8 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\Bigquery;
19
20class TableListTables extends \Google\Model
21{
22 protected $clusteringType = Clustering::class;
23 protected $clusteringDataType = '';
24 /**
25 * @var string
26 */
27 public $creationTime;
28 /**
29 * @var string
30 */
31 public $expirationTime;
32 /**
33 * @var string
34 */
35 public $friendlyName;
36 /**
37 * @var string
38 */
39 public $id;
40 /**
41 * @var string
42 */
43 public $kind;
44 /**
45 * @var string[]
46 */
47 public $labels;
48 protected $rangePartitioningType = RangePartitioning::class;
49 protected $rangePartitioningDataType = '';
50 /**
51 * @var bool
52 */
53 public $requirePartitionFilter;
54 protected $tableReferenceType = TableReference::class;
55 protected $tableReferenceDataType = '';
56 protected $timePartitioningType = TimePartitioning::class;
57 protected $timePartitioningDataType = '';
58 /**
59 * @var string
60 */
61 public $type;
62 protected $viewType = TableListTablesView::class;
63 protected $viewDataType = '';
64
65 /**
66 * @param Clustering
67 */
68 public function setClustering(Clustering $clustering)
69 {
70 $this->clustering = $clustering;
71 }
72 /**
73 * @return Clustering
74 */
75 public function getClustering()
76 {
77 return $this->clustering;
78 }
79 /**
80 * @param string
81 */
82 public function setCreationTime($creationTime)
83 {
84 $this->creationTime = $creationTime;
85 }
86 /**
87 * @return string
88 */
89 public function getCreationTime()
90 {
91 return $this->creationTime;
92 }
93 /**
94 * @param string
95 */
96 public function setExpirationTime($expirationTime)
97 {
98 $this->expirationTime = $expirationTime;
99 }
100 /**
101 * @return string
102 */
103 public function getExpirationTime()
104 {
105 return $this->expirationTime;
106 }
107 /**
108 * @param string
109 */
110 public function setFriendlyName($friendlyName)
111 {
112 $this->friendlyName = $friendlyName;
113 }
114 /**
115 * @return string
116 */
117 public function getFriendlyName()
118 {
119 return $this->friendlyName;
120 }
121 /**
122 * @param string
123 */
124 public function setId($id)
125 {
126 $this->id = $id;
127 }
128 /**
129 * @return string
130 */
131 public function getId()
132 {
133 return $this->id;
134 }
135 /**
136 * @param string
137 */
138 public function setKind($kind)
139 {
140 $this->kind = $kind;
141 }
142 /**
143 * @return string
144 */
145 public function getKind()
146 {
147 return $this->kind;
148 }
149 /**
150 * @param string[]
151 */
152 public function setLabels($labels)
153 {
154 $this->labels = $labels;
155 }
156 /**
157 * @return string[]
158 */
159 public function getLabels()
160 {
161 return $this->labels;
162 }
163 /**
164 * @param RangePartitioning
165 */
166 public function setRangePartitioning(RangePartitioning $rangePartitioning)
167 {
168 $this->rangePartitioning = $rangePartitioning;
169 }
170 /**
171 * @return RangePartitioning
172 */
173 public function getRangePartitioning()
174 {
175 return $this->rangePartitioning;
176 }
177 /**
178 * @param bool
179 */
180 public function setRequirePartitionFilter($requirePartitionFilter)
181 {
182 $this->requirePartitionFilter = $requirePartitionFilter;
183 }
184 /**
185 * @return bool
186 */
187 public function getRequirePartitionFilter()
188 {
189 return $this->requirePartitionFilter;
190 }
191 /**
192 * @param TableReference
193 */
194 public function setTableReference(TableReference $tableReference)
195 {
196 $this->tableReference = $tableReference;
197 }
198 /**
199 * @return TableReference
200 */
201 public function getTableReference()
202 {
203 return $this->tableReference;
204 }
205 /**
206 * @param TimePartitioning
207 */
208 public function setTimePartitioning(TimePartitioning $timePartitioning)
209 {
210 $this->timePartitioning = $timePartitioning;
211 }
212 /**
213 * @return TimePartitioning
214 */
215 public function getTimePartitioning()
216 {
217 return $this->timePartitioning;
218 }
219 /**
220 * @param string
221 */
222 public function setType($type)
223 {
224 $this->type = $type;
225 }
226 /**
227 * @return string
228 */
229 public function getType()
230 {
231 return $this->type;
232 }
233 /**
234 * @param TableListTablesView
235 */
236 public function setView(TableListTablesView $view)
237 {
238 $this->view = $view;
239 }
240 /**
241 * @return TableListTablesView
242 */
243 public function getView()
244 {
245 return $this->view;
246 }
247}
248
249// Adding a class alias for backwards compatibility with the previous class name.
250class_alias(TableListTables::class, 'Google_Service_Bigquery_TableListTables');
Note: See TracBrowser for help on using the repository browser.