source: vendor/google/apiclient-services/src/CloudDataplex/GoogleCloudDataplexV1DataScanEvent.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: 6.4 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 GoogleCloudDataplexV1DataScanEvent extends \Google\Model
21{
22 /**
23 * @var string
24 */
25 public $createTime;
26 protected $dataProfileType = GoogleCloudDataplexV1DataScanEventDataProfileResult::class;
27 protected $dataProfileDataType = '';
28 protected $dataProfileConfigsType = GoogleCloudDataplexV1DataScanEventDataProfileAppliedConfigs::class;
29 protected $dataProfileConfigsDataType = '';
30 protected $dataQualityType = GoogleCloudDataplexV1DataScanEventDataQualityResult::class;
31 protected $dataQualityDataType = '';
32 protected $dataQualityConfigsType = GoogleCloudDataplexV1DataScanEventDataQualityAppliedConfigs::class;
33 protected $dataQualityConfigsDataType = '';
34 /**
35 * @var string
36 */
37 public $dataSource;
38 /**
39 * @var string
40 */
41 public $endTime;
42 /**
43 * @var string
44 */
45 public $jobId;
46 /**
47 * @var string
48 */
49 public $message;
50 protected $postScanActionsResultType = GoogleCloudDataplexV1DataScanEventPostScanActionsResult::class;
51 protected $postScanActionsResultDataType = '';
52 /**
53 * @var string
54 */
55 public $scope;
56 /**
57 * @var string
58 */
59 public $specVersion;
60 /**
61 * @var string
62 */
63 public $startTime;
64 /**
65 * @var string
66 */
67 public $state;
68 /**
69 * @var string
70 */
71 public $trigger;
72 /**
73 * @var string
74 */
75 public $type;
76
77 /**
78 * @param string
79 */
80 public function setCreateTime($createTime)
81 {
82 $this->createTime = $createTime;
83 }
84 /**
85 * @return string
86 */
87 public function getCreateTime()
88 {
89 return $this->createTime;
90 }
91 /**
92 * @param GoogleCloudDataplexV1DataScanEventDataProfileResult
93 */
94 public function setDataProfile(GoogleCloudDataplexV1DataScanEventDataProfileResult $dataProfile)
95 {
96 $this->dataProfile = $dataProfile;
97 }
98 /**
99 * @return GoogleCloudDataplexV1DataScanEventDataProfileResult
100 */
101 public function getDataProfile()
102 {
103 return $this->dataProfile;
104 }
105 /**
106 * @param GoogleCloudDataplexV1DataScanEventDataProfileAppliedConfigs
107 */
108 public function setDataProfileConfigs(GoogleCloudDataplexV1DataScanEventDataProfileAppliedConfigs $dataProfileConfigs)
109 {
110 $this->dataProfileConfigs = $dataProfileConfigs;
111 }
112 /**
113 * @return GoogleCloudDataplexV1DataScanEventDataProfileAppliedConfigs
114 */
115 public function getDataProfileConfigs()
116 {
117 return $this->dataProfileConfigs;
118 }
119 /**
120 * @param GoogleCloudDataplexV1DataScanEventDataQualityResult
121 */
122 public function setDataQuality(GoogleCloudDataplexV1DataScanEventDataQualityResult $dataQuality)
123 {
124 $this->dataQuality = $dataQuality;
125 }
126 /**
127 * @return GoogleCloudDataplexV1DataScanEventDataQualityResult
128 */
129 public function getDataQuality()
130 {
131 return $this->dataQuality;
132 }
133 /**
134 * @param GoogleCloudDataplexV1DataScanEventDataQualityAppliedConfigs
135 */
136 public function setDataQualityConfigs(GoogleCloudDataplexV1DataScanEventDataQualityAppliedConfigs $dataQualityConfigs)
137 {
138 $this->dataQualityConfigs = $dataQualityConfigs;
139 }
140 /**
141 * @return GoogleCloudDataplexV1DataScanEventDataQualityAppliedConfigs
142 */
143 public function getDataQualityConfigs()
144 {
145 return $this->dataQualityConfigs;
146 }
147 /**
148 * @param string
149 */
150 public function setDataSource($dataSource)
151 {
152 $this->dataSource = $dataSource;
153 }
154 /**
155 * @return string
156 */
157 public function getDataSource()
158 {
159 return $this->dataSource;
160 }
161 /**
162 * @param string
163 */
164 public function setEndTime($endTime)
165 {
166 $this->endTime = $endTime;
167 }
168 /**
169 * @return string
170 */
171 public function getEndTime()
172 {
173 return $this->endTime;
174 }
175 /**
176 * @param string
177 */
178 public function setJobId($jobId)
179 {
180 $this->jobId = $jobId;
181 }
182 /**
183 * @return string
184 */
185 public function getJobId()
186 {
187 return $this->jobId;
188 }
189 /**
190 * @param string
191 */
192 public function setMessage($message)
193 {
194 $this->message = $message;
195 }
196 /**
197 * @return string
198 */
199 public function getMessage()
200 {
201 return $this->message;
202 }
203 /**
204 * @param GoogleCloudDataplexV1DataScanEventPostScanActionsResult
205 */
206 public function setPostScanActionsResult(GoogleCloudDataplexV1DataScanEventPostScanActionsResult $postScanActionsResult)
207 {
208 $this->postScanActionsResult = $postScanActionsResult;
209 }
210 /**
211 * @return GoogleCloudDataplexV1DataScanEventPostScanActionsResult
212 */
213 public function getPostScanActionsResult()
214 {
215 return $this->postScanActionsResult;
216 }
217 /**
218 * @param string
219 */
220 public function setScope($scope)
221 {
222 $this->scope = $scope;
223 }
224 /**
225 * @return string
226 */
227 public function getScope()
228 {
229 return $this->scope;
230 }
231 /**
232 * @param string
233 */
234 public function setSpecVersion($specVersion)
235 {
236 $this->specVersion = $specVersion;
237 }
238 /**
239 * @return string
240 */
241 public function getSpecVersion()
242 {
243 return $this->specVersion;
244 }
245 /**
246 * @param string
247 */
248 public function setStartTime($startTime)
249 {
250 $this->startTime = $startTime;
251 }
252 /**
253 * @return string
254 */
255 public function getStartTime()
256 {
257 return $this->startTime;
258 }
259 /**
260 * @param string
261 */
262 public function setState($state)
263 {
264 $this->state = $state;
265 }
266 /**
267 * @return string
268 */
269 public function getState()
270 {
271 return $this->state;
272 }
273 /**
274 * @param string
275 */
276 public function setTrigger($trigger)
277 {
278 $this->trigger = $trigger;
279 }
280 /**
281 * @return string
282 */
283 public function getTrigger()
284 {
285 return $this->trigger;
286 }
287 /**
288 * @param string
289 */
290 public function setType($type)
291 {
292 $this->type = $type;
293 }
294 /**
295 * @return string
296 */
297 public function getType()
298 {
299 return $this->type;
300 }
301}
302
303// Adding a class alias for backwards compatibility with the previous class name.
304class_alias(GoogleCloudDataplexV1DataScanEvent::class, 'Google_Service_CloudDataplex_GoogleCloudDataplexV1DataScanEvent');
Note: See TracBrowser for help on using the repository browser.