Skip to content

Commit

Permalink
feat(dataplex-v1): Support SQL Assertion data quality rules (#25838)
Browse files Browse the repository at this point in the history
feat!(dataplex-v1): Removed deprecated fields of SearchEntries
  • Loading branch information
gcf-owl-bot[bot] committed May 13, 2024
1 parent d95f3ef commit 823f048
Show file tree
Hide file tree
Showing 8 changed files with 68 additions and 49 deletions.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -2099,15 +2099,17 @@ def delete_entry request, options = nil
# Optional. A filter on the entries to return.
# Filters are case-sensitive.
# The request can be filtered by the following fields:
# entry_type, display_name.
# entry_type, entry_source.display_name.
# The comparison operators are =, !=, <, >, <=, >= (strings are compared
# according to lexical order)
# The logical operators AND, OR, NOT can be used
# in the filter. Example filter expressions:
# "display_name=AnExampleDisplayName"
# in the filter. Wildcard "*" can be used, but for entry_type the full
# project id or number needs to be provided. Example filter expressions:
# "entry_source.display_name=AnExampleDisplayName"
# "entry_type=projects/example-project/locations/global/entryTypes/example-entry_type"
# "entry_type=projects/a* OR "entry_type=projects/k*"
# "NOT display_name=AnotherExampleDisplayName"
# "entry_type=projects/example-project/locations/us/entryTypes/a* OR
# entry_type=projects/another-project/locations/*"
# "NOT entry_source.display_name=AnotherExampleDisplayName"
#
# @yield [response, operation] Access the result along with the RPC operation
# @yieldparam response [::Gapic::PagedEnumerable<::Google::Cloud::Dataplex::V1::Entry>]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1965,15 +1965,17 @@ def delete_entry request, options = nil
# Optional. A filter on the entries to return.
# Filters are case-sensitive.
# The request can be filtered by the following fields:
# entry_type, display_name.
# entry_type, entry_source.display_name.
# The comparison operators are =, !=, <, >, <=, >= (strings are compared
# according to lexical order)
# The logical operators AND, OR, NOT can be used
# in the filter. Example filter expressions:
# "display_name=AnExampleDisplayName"
# in the filter. Wildcard "*" can be used, but for entry_type the full
# project id or number needs to be provided. Example filter expressions:
# "entry_source.display_name=AnExampleDisplayName"
# "entry_type=projects/example-project/locations/global/entryTypes/example-entry_type"
# "entry_type=projects/a* OR "entry_type=projects/k*"
# "NOT display_name=AnotherExampleDisplayName"
# "entry_type=projects/example-project/locations/us/entryTypes/a* OR
# entry_type=projects/another-project/locations/*"
# "NOT entry_source.display_name=AnotherExampleDisplayName"
# @yield [result, operation] Access the result along with the TransportOperation object
# @yieldparam result [::Gapic::Rest::PagedEnumerable<::Google::Cloud::Dataplex::V1::Entry>]
# @yieldparam operation [::Gapic::Rest::TransportOperation]
Expand Down

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

0 comments on commit 823f048

Please sign in to comment.