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 BigQuery client #12501

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
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ defmodule GoogleApi.BigQuery.V2 do
API client metadata for GoogleApi.BigQuery.V2.
"""

@discovery_revision "20241013"
@discovery_revision "20241027"

def discovery_revision(), do: @discovery_revision
end
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ defmodule GoogleApi.BigQuery.V2.Model.Argument do
## Attributes
* `argumentKind` (*type:* `String.t`, *default:* `nil`) - Optional. Defaults to FIXED_TYPE.
* `dataType` (*type:* `GoogleApi.BigQuery.V2.Model.StandardSqlDataType.t`, *default:* `nil`) - Required unless argument_kind = ANY_TYPE.
* `dataType` (*type:* `GoogleApi.BigQuery.V2.Model.StandardSqlDataType.t`, *default:* `nil`) - Set if argument_kind == FIXED_TYPE.
* `isAggregate` (*type:* `boolean()`, *default:* `nil`) - Optional. Whether the argument is an aggregate function parameter. Must be Unset for routine types other than AGGREGATE_FUNCTION. For AGGREGATE_FUNCTION, if set to false, it is equivalent to adding "NOT AGGREGATE" clause in DDL; Otherwise, it is equivalent to omitting "NOT AGGREGATE" clause in DDL.
* `mode` (*type:* `String.t`, *default:* `nil`) - Optional. Specifies whether the argument is input or output. Can be set for procedures only.
* `name` (*type:* `String.t`, *default:* `nil`) - Optional. The name of this argument. Can be absent for function return argument.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ defmodule GoogleApi.BigQuery.V2.Model.BigLakeConfiguration do
## Attributes
* `connectionId` (*type:* `String.t`, *default:* `nil`) - Required. The connection specifying the credentials to be used to read and write to external storage, such as Cloud Storage. The connection_id can have the form `{project}.{location}.{connection_id}` or `projects/{project}/locations/{location}/connections/{connection_id}".
* `fileFormat` (*type:* `String.t`, *default:* `nil`) - Required. The file format the table data is stored in.
* `storageUri` (*type:* `String.t`, *default:* `nil`) - Required. The fully qualified location prefix of the external folder where table data is stored. The '*' wildcard character is not allowed. The URI should be in the format `gs://bucket/path_to_table/`
* `tableFormat` (*type:* `String.t`, *default:* `nil`) - Required. The table format the metadata only snapshots are stored in.
* `connectionId` (*type:* `String.t`, *default:* `nil`) - Optional. The connection specifying the credentials to be used to read and write to external storage, such as Cloud Storage. The connection_id can have the form `{project}.{location}.{connection_id}` or `projects/{project}/locations/{location}/connections/{connection_id}".
* `fileFormat` (*type:* `String.t`, *default:* `nil`) - Optional. The file format the table data is stored in.
* `storageUri` (*type:* `String.t`, *default:* `nil`) - Optional. The fully qualified location prefix of the external folder where table data is stored. The '*' wildcard character is not allowed. The URI should be in the format `gs://bucket/path_to_table/`
* `tableFormat` (*type:* `String.t`, *default:* `nil`) - Optional. The table format the metadata only snapshots are stored in.
"""

use GoogleApi.Gax.ModelBase
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ defmodule GoogleApi.BigQuery.V2.Model.TrainingOptions do
* `autoClassWeights` (*type:* `boolean()`, *default:* `nil`) - Whether to calculate class weights automatically based on the popularity of each label.
* `optimizer` (*type:* `String.t`, *default:* `nil`) - Optimizer used for training the neural nets.
* `colsampleBynode` (*type:* `float()`, *default:* `nil`) - Subsample ratio of columns for each node(split) for boosted tree models.
* `contributionMetric` (*type:* `String.t`, *default:* `nil`) - The contribution metric. Applies to contribution analysis models. Allowed formats supported are for summable and summable ratio contribution metrics. These include expressions such as "SUM(x)" or "SUM(x)/SUM(y)", where x and y are column names from the base table.
* `contributionMetric` (*type:* `String.t`, *default:* `nil`) - The contribution metric. Applies to contribution analysis models. Allowed formats supported are for summable and summable ratio contribution metrics. These include expressions such as `SUM(x)` or `SUM(x)/SUM(y)`, where x and y are column names from the base table.
* `modelUri` (*type:* `String.t`, *default:* `nil`) - Google Cloud Storage URI from which the model was imported. Only applicable for imported models.
* `sampledShapleyNumPaths` (*type:* `String.t`, *default:* `nil`) - Number of paths for the sampled Shapley explain method.
* `initialLearnRate` (*type:* `float()`, *default:* `nil`) - Specifies the initial learning rate for the line search learn rate strategy.
Expand Down
2 changes: 1 addition & 1 deletion clients/big_query/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
defmodule GoogleApi.BigQuery.Mixfile do
use Mix.Project

@version "0.86.0"
@version "0.86.1"

def project() do
[
Expand Down
Loading