source: vendor/google/apiclient-services/src/CloudDataplex/GoogleCloudDataplexV1DataQualityScanRuleResult.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.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 GoogleCloudDataplexV1DataQualityScanRuleResult extends \Google\Model
21{
22 /**
23 * @var string
24 */
25 public $assertionRowCount;
26 /**
27 * @var string
28 */
29 public $column;
30 /**
31 * @var string
32 */
33 public $dataSource;
34 /**
35 * @var string
36 */
37 public $evaluatedRowCount;
38 /**
39 * @var string
40 */
41 public $evalutionType;
42 /**
43 * @var string
44 */
45 public $jobId;
46 /**
47 * @var string
48 */
49 public $nullRowCount;
50 /**
51 * @var string
52 */
53 public $passedRowCount;
54 /**
55 * @var string
56 */
57 public $result;
58 /**
59 * @var string
60 */
61 public $ruleDimension;
62 /**
63 * @var string
64 */
65 public $ruleName;
66 /**
67 * @var string
68 */
69 public $ruleType;
70 public $thresholdPercent;
71
72 /**
73 * @param string
74 */
75 public function setAssertionRowCount($assertionRowCount)
76 {
77 $this->assertionRowCount = $assertionRowCount;
78 }
79 /**
80 * @return string
81 */
82 public function getAssertionRowCount()
83 {
84 return $this->assertionRowCount;
85 }
86 /**
87 * @param string
88 */
89 public function setColumn($column)
90 {
91 $this->column = $column;
92 }
93 /**
94 * @return string
95 */
96 public function getColumn()
97 {
98 return $this->column;
99 }
100 /**
101 * @param string
102 */
103 public function setDataSource($dataSource)
104 {
105 $this->dataSource = $dataSource;
106 }
107 /**
108 * @return string
109 */
110 public function getDataSource()
111 {
112 return $this->dataSource;
113 }
114 /**
115 * @param string
116 */
117 public function setEvaluatedRowCount($evaluatedRowCount)
118 {
119 $this->evaluatedRowCount = $evaluatedRowCount;
120 }
121 /**
122 * @return string
123 */
124 public function getEvaluatedRowCount()
125 {
126 return $this->evaluatedRowCount;
127 }
128 /**
129 * @param string
130 */
131 public function setEvalutionType($evalutionType)
132 {
133 $this->evalutionType = $evalutionType;
134 }
135 /**
136 * @return string
137 */
138 public function getEvalutionType()
139 {
140 return $this->evalutionType;
141 }
142 /**
143 * @param string
144 */
145 public function setJobId($jobId)
146 {
147 $this->jobId = $jobId;
148 }
149 /**
150 * @return string
151 */
152 public function getJobId()
153 {
154 return $this->jobId;
155 }
156 /**
157 * @param string
158 */
159 public function setNullRowCount($nullRowCount)
160 {
161 $this->nullRowCount = $nullRowCount;
162 }
163 /**
164 * @return string
165 */
166 public function getNullRowCount()
167 {
168 return $this->nullRowCount;
169 }
170 /**
171 * @param string
172 */
173 public function setPassedRowCount($passedRowCount)
174 {
175 $this->passedRowCount = $passedRowCount;
176 }
177 /**
178 * @return string
179 */
180 public function getPassedRowCount()
181 {
182 return $this->passedRowCount;
183 }
184 /**
185 * @param string
186 */
187 public function setResult($result)
188 {
189 $this->result = $result;
190 }
191 /**
192 * @return string
193 */
194 public function getResult()
195 {
196 return $this->result;
197 }
198 /**
199 * @param string
200 */
201 public function setRuleDimension($ruleDimension)
202 {
203 $this->ruleDimension = $ruleDimension;
204 }
205 /**
206 * @return string
207 */
208 public function getRuleDimension()
209 {
210 return $this->ruleDimension;
211 }
212 /**
213 * @param string
214 */
215 public function setRuleName($ruleName)
216 {
217 $this->ruleName = $ruleName;
218 }
219 /**
220 * @return string
221 */
222 public function getRuleName()
223 {
224 return $this->ruleName;
225 }
226 /**
227 * @param string
228 */
229 public function setRuleType($ruleType)
230 {
231 $this->ruleType = $ruleType;
232 }
233 /**
234 * @return string
235 */
236 public function getRuleType()
237 {
238 return $this->ruleType;
239 }
240 public function setThresholdPercent($thresholdPercent)
241 {
242 $this->thresholdPercent = $thresholdPercent;
243 }
244 public function getThresholdPercent()
245 {
246 return $this->thresholdPercent;
247 }
248}
249
250// Adding a class alias for backwards compatibility with the previous class name.
251class_alias(GoogleCloudDataplexV1DataQualityScanRuleResult::class, 'Google_Service_CloudDataplex_GoogleCloudDataplexV1DataQualityScanRuleResult');
Note: See TracBrowser for help on using the repository browser.