source: vendor/google/apiclient-services/src/CloudDataplex/GoogleCloudDataplexV1DataQualityRuleResult.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: 3.2 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 GoogleCloudDataplexV1DataQualityRuleResult extends \Google\Model
21{
22 /**
23 * @var string
24 */
25 public $assertionRowCount;
26 /**
27 * @var string
28 */
29 public $evaluatedCount;
30 /**
31 * @var string
32 */
33 public $failingRowsQuery;
34 /**
35 * @var string
36 */
37 public $nullCount;
38 public $passRatio;
39 /**
40 * @var bool
41 */
42 public $passed;
43 /**
44 * @var string
45 */
46 public $passedCount;
47 protected $ruleType = GoogleCloudDataplexV1DataQualityRule::class;
48 protected $ruleDataType = '';
49
50 /**
51 * @param string
52 */
53 public function setAssertionRowCount($assertionRowCount)
54 {
55 $this->assertionRowCount = $assertionRowCount;
56 }
57 /**
58 * @return string
59 */
60 public function getAssertionRowCount()
61 {
62 return $this->assertionRowCount;
63 }
64 /**
65 * @param string
66 */
67 public function setEvaluatedCount($evaluatedCount)
68 {
69 $this->evaluatedCount = $evaluatedCount;
70 }
71 /**
72 * @return string
73 */
74 public function getEvaluatedCount()
75 {
76 return $this->evaluatedCount;
77 }
78 /**
79 * @param string
80 */
81 public function setFailingRowsQuery($failingRowsQuery)
82 {
83 $this->failingRowsQuery = $failingRowsQuery;
84 }
85 /**
86 * @return string
87 */
88 public function getFailingRowsQuery()
89 {
90 return $this->failingRowsQuery;
91 }
92 /**
93 * @param string
94 */
95 public function setNullCount($nullCount)
96 {
97 $this->nullCount = $nullCount;
98 }
99 /**
100 * @return string
101 */
102 public function getNullCount()
103 {
104 return $this->nullCount;
105 }
106 public function setPassRatio($passRatio)
107 {
108 $this->passRatio = $passRatio;
109 }
110 public function getPassRatio()
111 {
112 return $this->passRatio;
113 }
114 /**
115 * @param bool
116 */
117 public function setPassed($passed)
118 {
119 $this->passed = $passed;
120 }
121 /**
122 * @return bool
123 */
124 public function getPassed()
125 {
126 return $this->passed;
127 }
128 /**
129 * @param string
130 */
131 public function setPassedCount($passedCount)
132 {
133 $this->passedCount = $passedCount;
134 }
135 /**
136 * @return string
137 */
138 public function getPassedCount()
139 {
140 return $this->passedCount;
141 }
142 /**
143 * @param GoogleCloudDataplexV1DataQualityRule
144 */
145 public function setRule(GoogleCloudDataplexV1DataQualityRule $rule)
146 {
147 $this->rule = $rule;
148 }
149 /**
150 * @return GoogleCloudDataplexV1DataQualityRule
151 */
152 public function getRule()
153 {
154 return $this->rule;
155 }
156}
157
158// Adding a class alias for backwards compatibility with the previous class name.
159class_alias(GoogleCloudDataplexV1DataQualityRuleResult::class, 'Google_Service_CloudDataplex_GoogleCloudDataplexV1DataQualityRuleResult');
Note: See TracBrowser for help on using the repository browser.