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 PubSub client #11422

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/pub_sub/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_pub_sub, "~> 0.38"}]
[{:google_api_pub_sub, "~> 0.39"}]
end
```

Expand Down
2 changes: 1 addition & 1 deletion clients/pub_sub/lib/google_api/pub_sub/v1/metadata.ex
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ defmodule GoogleApi.PubSub.V1 do
API client metadata for GoogleApi.PubSub.V1.
"""

@discovery_revision "20240319"
@discovery_revision "20240607"

def discovery_revision(), do: @discovery_revision
end
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,18 @@ defmodule GoogleApi.PubSub.V1.Model.AvroConfig do

## Attributes

* `useTopicSchema` (*type:* `boolean()`, *default:* `nil`) - Optional. When true, the output Cloud Storage file will be serialized using the topic schema, if it exists.
* `writeMetadata` (*type:* `boolean()`, *default:* `nil`) - Optional. When true, write the subscription name, message_id, publish_time, attributes, and ordering_key as additional fields in the output. The subscription name, message_id, and publish_time fields are put in their own fields while all other message properties other than data (for example, an ordering_key, if present) are added as entries in the attributes map.
"""

use GoogleApi.Gax.ModelBase

@type t :: %__MODULE__{
:useTopicSchema => boolean() | nil,
:writeMetadata => boolean() | nil
}

field(:useTopicSchema)
field(:writeMetadata)
end

Expand Down
2 changes: 1 addition & 1 deletion clients/pub_sub/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
defmodule GoogleApi.PubSub.Mixfile do
use Mix.Project

@version "0.38.0"
@version "0.39.0"

def project() do
[
Expand Down
Loading