Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Automated regeneration of Dataplex client #12838

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion clients/dataplex/lib/google_api/dataplex/v1/metadata.ex
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ defmodule GoogleApi.Dataplex.V1 do
API client metadata for GoogleApi.Dataplex.V1.
"""

@discovery_revision "20250107"
@discovery_revision "20250116"

def discovery_revision(), do: @discovery_revision
end
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ defmodule GoogleApi.Dataplex.V1.Model.GoogleCloudDataplexV1DataQualityRuleResult
## Attributes

* `assertionRowCount` (*type:* `String.t`, *default:* `nil`) - Output only. The number of rows returned by the SQL statement in a SQL assertion rule.This field is only valid for SQL assertion rules.
* `evaluatedCount` (*type:* `String.t`, *default:* `nil`) - The number of rows a rule was evaluated against.This field is only valid for row-level type rules.Evaluated count can be configured to either include all rows (default) - with null rows automatically failing rule evaluation, or exclude null rows from the evaluated_count, by setting ignore_nulls = true.
* `evaluatedCount` (*type:* `String.t`, *default:* `nil`) - The number of rows a rule was evaluated against.This field is only valid for row-level type rules.Evaluated count can be configured to either include all rows (default) - with null rows automatically failing rule evaluation, or exclude null rows from the evaluated_count, by setting ignore_nulls = true.This field is not set for rule SqlAssertion.
* `failingRowsQuery` (*type:* `String.t`, *default:* `nil`) - The query to find rows that did not pass this rule.This field is only valid for row-level type rules.
* `nullCount` (*type:* `String.t`, *default:* `nil`) - The number of rows with null values in the specified column.
* `passRatio` (*type:* `float()`, *default:* `nil`) - The ratio of passed_count / evaluated_count.This field is only valid for row-level type rules.
* `passed` (*type:* `boolean()`, *default:* `nil`) - Whether the rule passed or failed.
* `passedCount` (*type:* `String.t`, *default:* `nil`) - The number of rows which passed a rule evaluation.This field is only valid for row-level type rules.
* `passedCount` (*type:* `String.t`, *default:* `nil`) - This field is not set for rule SqlAssertion.
* `rule` (*type:* `GoogleApi.Dataplex.V1.Model.GoogleCloudDataplexV1DataQualityRule.t`, *default:* `nil`) - The rule specified in the DataQualitySpec, as is.
"""

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

defmodule GoogleApi.Dataplex.V1.Model.GoogleCloudDataplexV1DataScan do
@moduledoc """
Represents a user-visible job which provides the insights for the related data source.For example: Data Quality: generates queries based on the rules and runs against the data to get data quality check results. Data Profile: analyzes the data in table(s) and generates insights about the structure, content and relationships (such as null percent, cardinality, min/max/mean, etc).
Represents a user-visible job which provides the insights for the related data source.For example: Data quality: generates queries based on the rules and runs against the data to get data quality check results. For more information, see Auto data quality overview (https://cloud.google.com/dataplex/docs/auto-data-quality-overview). Data profile: analyzes the data in tables and generates insights about the structure, content and relationships (such as null percent, cardinality, min/max/mean, etc). For more information, see About data profiling (https://cloud.google.com/dataplex/docs/data-profiling-overview). Data discovery: scans data in Cloud Storage buckets to extract and then catalog metadata. For more information, see Discover and catalog Cloud Storage data (https://cloud.google.com/bigquery/docs/automatic-discovery).

## Attributes

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ defmodule GoogleApi.Dataplex.V1.Model.GoogleCloudDataplexV1Entry do
* `entryType` (*type:* `String.t`, *default:* `nil`) - Required. Immutable. The relative resource name of the entry type that was used to create this entry, in the format projects/{project_id_or_number}/locations/{location_id}/entryTypes/{entry_type_id}.
* `fullyQualifiedName` (*type:* `String.t`, *default:* `nil`) - Optional. A name for the entry that can be referenced by an external system. For more information, see Fully qualified names (https://cloud.google.com/data-catalog/docs/fully-qualified-names). The maximum size of the field is 4000 characters.
* `name` (*type:* `String.t`, *default:* `nil`) - Identifier. The relative resource name of the entry, in the format projects/{project_id_or_number}/locations/{location_id}/entryGroups/{entry_group_id}/entries/{entry_id}.
* `parentEntry` (*type:* `String.t`, *default:* `nil`) - Optional. Immutable. The resource name of the parent entry.
* `parentEntry` (*type:* `String.t`, *default:* `nil`) - Optional. Immutable. The resource name of the parent entry, in the format projects/{project_id_or_number}/locations/{location_id}/entryGroups/{entry_group_id}/entries/{entry_id}.
* `updateTime` (*type:* `DateTime.t`, *default:* `nil`) - Output only. The time when the entry was last updated in Dataplex.
"""

Expand Down
Loading