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 Dataflow client #11329

Closed
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/dataflow/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Install this package from [Hex](https://hex.pm) by adding

```elixir
def deps do
[{:google_api_dataflow, "~> 0.46"}]
[{:google_api_dataflow, "~> 0.47"}]
end
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ defmodule GoogleApi.Dataflow.V1b3 do
API client metadata for GoogleApi.Dataflow.V1b3.
"""

@discovery_revision "20240317"
@discovery_revision "20240415"

def discovery_revision(), do: @discovery_revision
end
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ defmodule GoogleApi.Dataflow.V1b3.Model.TemplateMetadata do

## Attributes

* `defaultStreamingMode` (*type:* `String.t`, *default:* `nil`) - Optional. Indicates the default streaming mode for a streaming template. Only valid if both supports_at_least_once and supports_exactly_once are true. Possible values: UNSPECIFIED, EXACTLY_ONCE and AT_LEAST_ONCE
* `description` (*type:* `String.t`, *default:* `nil`) - Optional. A description of the template.
* `name` (*type:* `String.t`, *default:* `nil`) - Required. The name of the template.
* `parameters` (*type:* `list(GoogleApi.Dataflow.V1b3.Model.ParameterMetadata.t)`, *default:* `nil`) - The parameters for the template.
Expand All @@ -32,6 +33,7 @@ defmodule GoogleApi.Dataflow.V1b3.Model.TemplateMetadata do
use GoogleApi.Gax.ModelBase

@type t :: %__MODULE__{
:defaultStreamingMode => String.t() | nil,
:description => String.t() | nil,
:name => String.t() | nil,
:parameters => list(GoogleApi.Dataflow.V1b3.Model.ParameterMetadata.t()) | nil,
Expand All @@ -40,6 +42,7 @@ defmodule GoogleApi.Dataflow.V1b3.Model.TemplateMetadata do
:supportsExactlyOnce => boolean() | nil
}

field(:defaultStreamingMode)
field(:description)
field(:name)
field(:parameters, as: GoogleApi.Dataflow.V1b3.Model.ParameterMetadata, type: :list)
Expand Down
2 changes: 1 addition & 1 deletion clients/dataflow/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
defmodule GoogleApi.Dataflow.Mixfile do
use Mix.Project

@version "0.46.2"
@version "0.47.0"

def project() do
[
Expand Down
Loading