Skip to content

Commit

Permalink
feat: [dataplex] DataQualityDimension is now part of the DataQualityD…
Browse files Browse the repository at this point in the history
…imensionResult message (#4734)

* feat: DataQualityDimension is now part of the DataQualityDimensionResult message

PiperOrigin-RevId: 571976684

Source-Link: googleapis/googleapis@38d8c5d

Source-Link: googleapis/googleapis-gen@2132f5e
Copy-Tag: eyJwIjoicGFja2FnZXMvZ29vZ2xlLWNsb3VkLWRhdGFwbGV4Ly5Pd2xCb3QueWFtbCIsImgiOiIyMTMyZjVlMWE0NGI2OTNjNzRiM2NlNTNiMDNlZDRmNjcyMWJjMWRhIn0=

* 🦉 Updates from OwlBot post-processor

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

---------

Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
  • Loading branch information
gcf-owl-bot[bot] and gcf-owl-bot[bot] authored Oct 10, 2023
1 parent 17c7816 commit 86e26db
Show file tree
Hide file tree
Showing 4 changed files with 364 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -166,10 +166,23 @@ message DataQualityRuleResult {
// DataQualityDimensionResult provides a more detailed, per-dimension view of
// the results.
message DataQualityDimensionResult {
// Output only. The dimension config specified in the DataQualitySpec, as is.
DataQualityDimension dimension = 1
[(google.api.field_behavior) = OUTPUT_ONLY];

// Whether the dimension passed or failed.
bool passed = 3;
}

// A dimension captures data quality intent about a defined subset of the rules
// specified.
message DataQualityDimension {
// The dimension name a rule belongs to. Supported dimensions are
// ["COMPLETENESS", "ACCURACY", "CONSISTENCY", "VALIDITY", "UNIQUENESS",
// "INTEGRITY"]
string name = 1;
}

// A rule captures data quality intent about a data source.
message DataQualityRule {
// Evaluates whether each column value lies between a specified range.
Expand Down
103 changes: 103 additions & 0 deletions packages/google-cloud-dataplex/protos/protos.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 86e26db

Please sign in to comment.